replaced Qt `foreach()` with standard `for` range loop / some related cleanups (#3915)

* replaced Qt foreach() with standard for range loop / some related cleanups

* updated translations
This commit is contained in:
Oliver Stöneberg 2022-03-21 17:14:26 +01:00 committed by GitHub
parent 0e147502cc
commit 2b3fc5ed1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
27 changed files with 916 additions and 929 deletions

View File

@ -137,7 +137,7 @@ void CheckThread::run()
void CheckThread::runAddonsAndTools(const ImportProject::FileSettings *fileSettings, const QString &fileName)
{
foreach (const QString addon, mAddonsAndTools) {
for (const QString& addon : mAddonsAndTools) {
if (addon == CLANG_ANALYZER || addon == CLANG_TIDY) {
if (!fileSettings)
continue;
@ -150,17 +150,17 @@ void CheckThread::runAddonsAndTools(const ImportProject::FileSettings *fileSetti
args << ("-I" + QString::fromStdString(*incIt));
for (std::list<std::string>::const_iterator i = fileSettings->systemIncludePaths.begin(); i != fileSettings->systemIncludePaths.end(); ++i)
args << "-isystem" << QString::fromStdString(*i);
foreach (QString def, QString::fromStdString(fileSettings->defines).split(";")) {
for (const QString& def : QString::fromStdString(fileSettings->defines).split(";")) {
args << ("-D" + def);
}
foreach (const std::string& U, fileSettings->undefs) {
for (const std::string& U : fileSettings->undefs) {
args << QString::fromStdString("-U" + U);
}
const QString clangPath = CheckThread::clangTidyCmd();
if (!clangPath.isEmpty()) {
QDir dir(clangPath + "/../lib/clang");
foreach (QString ver, dir.entryList()) {
for (QString ver : dir.entryList()) {
QString includePath = dir.absolutePath() + '/' + ver + "/include";
if (ver[0] != '.' && QDir(includePath).exists()) {
args << "-isystem" << includePath;
@ -173,7 +173,7 @@ void CheckThread::runAddonsAndTools(const ImportProject::FileSettings *fileSetti
// To create compile_commands.json in windows see:
// https://bitsmaker.gitlab.io/post/clang-tidy-from-vs2015/
foreach (QString includePath, mClangIncludePaths) {
for (QString includePath : mClangIncludePaths) {
if (!includePath.isEmpty()) {
includePath.replace("\\", "/");
args << "-isystem" << includePath.trimmed();
@ -262,7 +262,7 @@ void CheckThread::runAddonsAndTools(const ImportProject::FileSettings *fileSetti
{
const QString cmd(clangTidyCmd());
QString debug(cmd.contains(" ") ? ('\"' + cmd + '\"') : cmd);
foreach (QString arg, args) {
for (const QString& arg : args) {
if (arg.contains(" "))
debug += " \"" + arg + '\"';
else
@ -375,7 +375,7 @@ void CheckThread::parseClangErrors(const QString &tool, const QString &file0, QS
}
errorItems.append(errorItem);
foreach (const ErrorItem &e, errorItems) {
for (const ErrorItem &e : errorItems) {
if (e.errorPath.isEmpty())
continue;
Suppressions::ErrorMessage errorMessage;
@ -388,7 +388,7 @@ void CheckThread::parseClangErrors(const QString &tool, const QString &file0, QS
continue;
std::list<ErrorMessage::FileLocation> callstack;
foreach (const QErrorPathItem &path, e.errorPath) {
for (const QErrorPathItem &path : e.errorPath) {
callstack.push_back(ErrorMessage::FileLocation(path.file.toStdString(), path.info.toStdString(), path.line, path.column));
}
const std::string f0 = file0.toStdString();
@ -401,7 +401,7 @@ void CheckThread::parseClangErrors(const QString &tool, const QString &file0, QS
bool CheckThread::isSuppressed(const Suppressions::ErrorMessage &errorMessage) const
{
foreach (const Suppressions::Suppression &suppression, mSuppressions) {
for (const Suppressions::Suppression &suppression : mSuppressions) {
if (suppression.isSuppressed(errorMessage))
return true;
}

View File

@ -112,7 +112,7 @@ Highlighter::Highlighter(QTextDocument *parent,
<< "volatile"
<< "wchar_­t"
<< "while";
foreach (const QString &pattern, keywordPatterns) {
for (const QString &pattern : keywordPatterns) {
rule.pattern = QRegularExpression("\\b" + pattern + "\\b");
rule.format = mKeywordFormat;
rule.ruleRole = RuleRole::Keyword;
@ -156,7 +156,7 @@ Highlighter::Highlighter(QTextDocument *parent,
void Highlighter::setSymbols(const QStringList &symbols)
{
mHighlightingRulesWithSymbols = mHighlightingRules;
foreach (const QString &sym, symbols) {
for (const QString &sym : symbols) {
HighlightingRule rule;
rule.pattern = QRegularExpression("\\b" + sym + "\\b");
rule.format = mSymbolFormat;
@ -191,7 +191,7 @@ void Highlighter::setStyle(const CodeEditorStyle &newStyle)
void Highlighter::highlightBlock(const QString &text)
{
foreach (const HighlightingRule &rule, mHighlightingRulesWithSymbols) {
for (const HighlightingRule &rule : mHighlightingRulesWithSymbols) {
QRegularExpressionMatchIterator matchIterator = rule.pattern.globalMatch(text);
while (matchIterator.hasNext()) {
QRegularExpressionMatch match = matchIterator.next();

View File

@ -472,13 +472,13 @@ Parameter: -l(line) (file)
<location filename="mainwindow.cpp" line="565"/>
<location filename="mainwindow.cpp" line="697"/>
<location filename="mainwindow.cpp" line="719"/>
<location filename="mainwindow.cpp" line="1202"/>
<location filename="mainwindow.cpp" line="1327"/>
<location filename="mainwindow.cpp" line="1601"/>
<location filename="mainwindow.cpp" line="1609"/>
<location filename="mainwindow.cpp" line="1632"/>
<location filename="mainwindow.cpp" line="1709"/>
<location filename="mainwindow.cpp" line="1784"/>
<location filename="mainwindow.cpp" line="1201"/>
<location filename="mainwindow.cpp" line="1326"/>
<location filename="mainwindow.cpp" line="1600"/>
<location filename="mainwindow.cpp" line="1608"/>
<location filename="mainwindow.cpp" line="1631"/>
<location filename="mainwindow.cpp" line="1708"/>
<location filename="mainwindow.cpp" line="1783"/>
<source>Cppcheck</source>
<translation>Cppcheck</translation>
</message>
@ -639,8 +639,8 @@ Parameter: -l(line) (file)
<translation>Zeige &amp;versteckte</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="807"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Information</source>
<translation>Information</translation>
</message>
@ -992,7 +992,7 @@ Parameter: -l(line) (file)
</message>
<message>
<location filename="mainwindow.cpp" line="86"/>
<location filename="mainwindow.cpp" line="1470"/>
<location filename="mainwindow.cpp" line="1469"/>
<source>Quick Filter:</source>
<translation>Schnellfilter:</translation>
</message>
@ -1011,60 +1011,60 @@ Do you want to load this project file instead?</source>
Möchten Sie stattdessen diese öffnen?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="817"/>
<location filename="mainwindow.cpp" line="816"/>
<source>File not found</source>
<translation>Datei nicht gefunden</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="820"/>
<location filename="mainwindow.cpp" line="819"/>
<source>Bad XML</source>
<translation>Fehlerhaftes XML</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="823"/>
<location filename="mainwindow.cpp" line="822"/>
<source>Missing attribute</source>
<translation>Fehlendes Attribut</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="826"/>
<location filename="mainwindow.cpp" line="825"/>
<source>Bad attribute value</source>
<translation>Falscher Attributwert</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="832"/>
<location filename="mainwindow.cpp" line="831"/>
<source>Duplicate platform type</source>
<translation>Plattformtyp doppelt</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="835"/>
<location filename="mainwindow.cpp" line="834"/>
<source>Platform type redefined</source>
<translation>Plattformtyp neu definiert</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Failed to load the selected library &apos;%1&apos;.
%2</source>
<translation>Laden der ausgewählten Bibliothek &apos;%1&apos; schlug fehl.
%2</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1369"/>
<location filename="mainwindow.cpp" line="1368"/>
<source>License</source>
<translation>Lizenz</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1376"/>
<location filename="mainwindow.cpp" line="1375"/>
<source>Authors</source>
<translation>Autoren</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1391"/>
<location filename="mainwindow.cpp" line="1390"/>
<source>Save the report file</source>
<translation>Speichert die Berichtdatei</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1218"/>
<location filename="mainwindow.cpp" line="1398"/>
<location filename="mainwindow.cpp" line="1217"/>
<location filename="mainwindow.cpp" line="1397"/>
<source>XML files (*.xml)</source>
<translation>XML-Dateien (*.xml)</translation>
</message>
@ -1083,34 +1083,34 @@ Dies wurde vermutlich durch einen Wechsel der Cppcheck-Version hervorgerufen. Bi
<translation>Sie müssen die Projektdatei schließen, bevor Sie neue Dateien oder Verzeichnisse auswählen!</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="807"/>
<source>The library &apos;%1&apos; contains unknown elements:
%2</source>
<translation>Die Bibliothek &apos;%1&apos; enthält unbekannte Elemente:
%2</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="829"/>
<location filename="mainwindow.cpp" line="828"/>
<source>Unsupported format</source>
<translation>Nicht unterstütztes Format</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="838"/>
<location filename="mainwindow.cpp" line="837"/>
<source>Unknown element</source>
<translation>Unbekanntes Element</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="841"/>
<location filename="mainwindow.cpp" line="840"/>
<source>Unknown issue</source>
<translation>Unbekannter Fehler</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Error</source>
<translation>Fehler</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Failed to load %1. Your Cppcheck installation is broken. You can use --data-dir=&lt;directory&gt; at the command line to specify where this file is located. Please note that --data-dir is supposed to be used by installation scripts and therefore the GUI does not start when it is used, all that happens is that the setting is configured.</source>
<translation>Laden von %1 fehlgeschlagen. Ihre Cppcheck-Installation ist defekt. Sie können --data-dir=&lt;Verzeichnis&gt; als Kommandozeilenparameter verwenden, um anzugeben, wo die Datei sich befindet. Bitte beachten Sie, dass --data-dir in Installationsroutinen genutzt werden soll, und die GUI bei dessen Nutzung nicht startet, sondern die Einstellungen konfiguriert.</translation>
</message>
@ -1123,17 +1123,17 @@ Opening a new XML file will clear current results.Do you want to proceed?</sourc
Das Einlesen einer XML-Datei löscht die aktuellen Ergebnisse. Fortfahren?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1220"/>
<location filename="mainwindow.cpp" line="1219"/>
<source>Open the report file</source>
<translation>Berichtdatei öffnen</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1402"/>
<location filename="mainwindow.cpp" line="1401"/>
<source>Text files (*.txt)</source>
<translation>Textdateien (*.txt)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1406"/>
<location filename="mainwindow.cpp" line="1405"/>
<source>CSV files (*.csv)</source>
<translation>CSV-Dateien (*.csv)</translation>
</message>
@ -1142,20 +1142,20 @@ Opening a new XML file will clear current results.Do you want to proceed?</sourc
<translation type="vanished">Cppcheck - %1</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1508"/>
<location filename="mainwindow.cpp" line="1507"/>
<source>Project files (*.cppcheck);;All files(*.*)</source>
<translation>Projektdateien (*.cppcheck);;Alle Dateien(*.*)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1510"/>
<location filename="mainwindow.cpp" line="1509"/>
<source>Select Project File</source>
<translation>Projektdatei auswählen</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="162"/>
<location filename="mainwindow.cpp" line="1472"/>
<location filename="mainwindow.cpp" line="1538"/>
<location filename="mainwindow.cpp" line="1672"/>
<location filename="mainwindow.cpp" line="1471"/>
<location filename="mainwindow.cpp" line="1537"/>
<location filename="mainwindow.cpp" line="1671"/>
<source>Project:</source>
<translation>Projekt:</translation>
</message>
@ -1209,7 +1209,7 @@ Do you want to proceed analysis without using any of these project files?</sourc
Wollen sie fortfahren, ohne diese Projektdateien zu nutzen?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1203"/>
<location filename="mainwindow.cpp" line="1202"/>
<source>Current results will be cleared.
Opening a new XML file will clear current results.
@ -1220,7 +1220,7 @@ Eine neue XML-Datei zu öffnen wird die aktuellen Ergebnisse löschen
Möchten sie fortfahren?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1323"/>
<location filename="mainwindow.cpp" line="1322"/>
<source>Analyzer is running.
Do you want to stop the analysis and exit Cppcheck?</source>
@ -1229,42 +1229,42 @@ Do you want to stop the analysis and exit Cppcheck?</source>
Wollen sie die Analyse abbrechen und Cppcheck beenden?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1389"/>
<location filename="mainwindow.cpp" line="1388"/>
<source>XML files (*.xml);;Text files (*.txt);;CSV files (*.csv)</source>
<translation>XML-Dateien (*.xml);;Textdateien (*.txt);;CSV-Dateien (*.csv)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1602"/>
<location filename="mainwindow.cpp" line="1601"/>
<source>Build dir &apos;%1&apos; does not exist, create it?</source>
<translation>Erstellungsverzeichnis &apos;%1&apos; existiert nicht. Erstellen?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1610"/>
<location filename="mainwindow.cpp" line="1609"/>
<source>To check the project using addons, you need a build directory.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1633"/>
<location filename="mainwindow.cpp" line="1632"/>
<source>Failed to import &apos;%1&apos;, analysis is stopped</source>
<translation>Import von &apos;%1&apos; fehlgeschlagen; Analyse wurde abgebrochen.</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1657"/>
<location filename="mainwindow.cpp" line="1656"/>
<source>Project files (*.cppcheck)</source>
<translation>Projektdateien (*.cppcheck)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1659"/>
<location filename="mainwindow.cpp" line="1658"/>
<source>Select Project Filename</source>
<translation>Projektnamen auswählen</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1710"/>
<location filename="mainwindow.cpp" line="1709"/>
<source>No project file loaded</source>
<translation>Keine Projektdatei geladen</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1779"/>
<location filename="mainwindow.cpp" line="1778"/>
<source>The project file
%1
@ -2016,22 +2016,22 @@ Options:
<context>
<name>ResultsTree</name>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>File</source>
<translation>Datei</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Severity</source>
<translation>Schweregrad</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Line</source>
<translation>Zeile</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Summary</source>
<translation>Zusammenfassung</translation>
</message>
@ -2112,7 +2112,7 @@ Options:
</message>
<message>
<location filename="resultstree.cpp" line="701"/>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Tag</source>
<translation>Tag</translation>
</message>
@ -2165,17 +2165,17 @@ Bitte überprüfen Sie ob der Pfad und die Parameter der Anwendung richtig einge
<translation>Wähle Verzeichnis</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Id</source>
<translation>Id</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Inconclusive</source>
<translation>Unklar</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Since date</source>
<translation>Seit Datum</translation>
</message>
@ -2257,32 +2257,32 @@ Legen Sie unter dem Menü Ansicht fest, welche Arten von Fehlern angezeigt werde
<translation>XML-Format-Version 1 wird nicht länger unterstützt.</translation>
</message>
<message>
<location filename="resultsview.cpp" line="455"/>
<location filename="resultsview.cpp" line="454"/>
<source>First included by</source>
<translation>Zuerst inkludiert von</translation>
</message>
<message>
<location filename="resultsview.cpp" line="460"/>
<location filename="resultsview.cpp" line="459"/>
<source>Id</source>
<translation>Id</translation>
</message>
<message>
<location filename="resultsview.cpp" line="462"/>
<location filename="resultsview.cpp" line="461"/>
<source>Bug hunting analysis is incomplete</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="575"/>
<location filename="resultsview.cpp" line="574"/>
<source>Clear Log</source>
<translation>Protokoll leeren</translation>
</message>
<message>
<location filename="resultsview.cpp" line="576"/>
<location filename="resultsview.cpp" line="575"/>
<source>Copy this Log entry</source>
<translation>Diesen Protokolleintrag kopieren</translation>
</message>
<message>
<location filename="resultsview.cpp" line="577"/>
<location filename="resultsview.cpp" line="576"/>
<source>Copy complete Log</source>
<translation>Gesamtes Protokoll kopieren</translation>
</message>
@ -2566,42 +2566,42 @@ Legen Sie unter dem Menü Ansicht fest, welche Arten von Fehlern angezeigt werde
<translation>kA</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="220"/>
<location filename="settingsdialog.cpp" line="219"/>
<source>The executable file &quot;%1&quot; is not available</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="231"/>
<location filename="settingsdialog.cpp" line="230"/>
<source>Add a new application</source>
<translation>Neue Anwendung hinzufügen</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="264"/>
<location filename="settingsdialog.cpp" line="260"/>
<source>Modify an application</source>
<translation>Anwendung ändern</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="269"/>
<location filename="settingsdialog.cpp" line="265"/>
<source> [Default]</source>
<translation> [Standard]</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="294"/>
<location filename="settingsdialog.cpp" line="290"/>
<source>[Default]</source>
<translation>[Standard]</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="349"/>
<location filename="settingsdialog.cpp" line="345"/>
<source>Select python binary</source>
<translation>Python-Binärdatei auswählen</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="356"/>
<location filename="settingsdialog.cpp" line="352"/>
<source>Select MISRA File</source>
<translation>Wähle MISRA-Datei</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="387"/>
<location filename="settingsdialog.cpp" line="383"/>
<source>Select clang path</source>
<translation>Clang-Verzeichnis auswählen</translation>
</message>

View File

@ -474,13 +474,13 @@ Parameters: -l(line) (file)</source>
<location filename="mainwindow.cpp" line="565"/>
<location filename="mainwindow.cpp" line="697"/>
<location filename="mainwindow.cpp" line="719"/>
<location filename="mainwindow.cpp" line="1202"/>
<location filename="mainwindow.cpp" line="1327"/>
<location filename="mainwindow.cpp" line="1601"/>
<location filename="mainwindow.cpp" line="1609"/>
<location filename="mainwindow.cpp" line="1632"/>
<location filename="mainwindow.cpp" line="1709"/>
<location filename="mainwindow.cpp" line="1784"/>
<location filename="mainwindow.cpp" line="1201"/>
<location filename="mainwindow.cpp" line="1326"/>
<location filename="mainwindow.cpp" line="1600"/>
<location filename="mainwindow.cpp" line="1608"/>
<location filename="mainwindow.cpp" line="1631"/>
<location filename="mainwindow.cpp" line="1708"/>
<location filename="mainwindow.cpp" line="1783"/>
<source>Cppcheck</source>
<translation>Cppcheck</translation>
</message>
@ -659,8 +659,8 @@ Parameters: -l(line) (file)</source>
<translation type="obsolete">Mostrar S&amp;cratchpad...</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="807"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Information</source>
<translation>Información</translation>
</message>
@ -1087,44 +1087,44 @@ This is probably because the settings were changed between the Cppcheck versions
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="817"/>
<location filename="mainwindow.cpp" line="816"/>
<source>File not found</source>
<translation>Archivo no encontrado</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="820"/>
<location filename="mainwindow.cpp" line="819"/>
<source>Bad XML</source>
<translation type="unfinished">XML malformado</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="823"/>
<location filename="mainwindow.cpp" line="822"/>
<source>Missing attribute</source>
<translation type="unfinished">Falta el atributo</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="826"/>
<location filename="mainwindow.cpp" line="825"/>
<source>Bad attribute value</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="829"/>
<location filename="mainwindow.cpp" line="828"/>
<source>Unsupported format</source>
<translation>Formato no soportado</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Failed to load the selected library &apos;%1&apos;.
%2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1218"/>
<location filename="mainwindow.cpp" line="1398"/>
<location filename="mainwindow.cpp" line="1217"/>
<location filename="mainwindow.cpp" line="1397"/>
<source>XML files (*.xml)</source>
<translation>Archivos XML (*.xml)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1220"/>
<location filename="mainwindow.cpp" line="1219"/>
<source>Open the report file</source>
<translation>Abrir informe</translation>
</message>
@ -1137,12 +1137,12 @@ Do you want to stop the checking and exit Cppcheck?</source>
¿Quieres parar la comprobación y salir del Cppcheck?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1369"/>
<location filename="mainwindow.cpp" line="1368"/>
<source>License</source>
<translation>Licencia</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1376"/>
<location filename="mainwindow.cpp" line="1375"/>
<source>Authors</source>
<translation>Autores</translation>
</message>
@ -1151,13 +1151,13 @@ Do you want to stop the checking and exit Cppcheck?</source>
<translation type="obsolete">Archivos XML versión 2 (*.xml);;Archivos XML versión 1 (*.xml);;Archivos de texto (*.txt);;Archivos CSV (*.csv)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1391"/>
<location filename="mainwindow.cpp" line="1390"/>
<source>Save the report file</source>
<translation>Guardar informe</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="86"/>
<location filename="mainwindow.cpp" line="1470"/>
<location filename="mainwindow.cpp" line="1469"/>
<source>Quick Filter:</source>
<translation>Filtro rápido:</translation>
</message>
@ -1183,39 +1183,39 @@ Do you want to proceed checking without using any of these project files?</sourc
¿Quiere proceder a comprobar sin utilizar ninguno de estos ficheros de proyecto?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="807"/>
<source>The library &apos;%1&apos; contains unknown elements:
%2</source>
<translation>La biblioteca &apos;%1&apos; contiene elementos deconocidos:
%2</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="832"/>
<location filename="mainwindow.cpp" line="831"/>
<source>Duplicate platform type</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="835"/>
<location filename="mainwindow.cpp" line="834"/>
<source>Platform type redefined</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="838"/>
<location filename="mainwindow.cpp" line="837"/>
<source>Unknown element</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="841"/>
<location filename="mainwindow.cpp" line="840"/>
<source>Unknown issue</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Error</source>
<translation>Error</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Failed to load %1. Your Cppcheck installation is broken. You can use --data-dir=&lt;directory&gt; at the command line to specify where this file is located. Please note that --data-dir is supposed to be used by installation scripts and therefore the GUI does not start when it is used, all that happens is that the setting is configured.</source>
<translation type="unfinished"></translation>
</message>
@ -1236,12 +1236,12 @@ Abrir un nuevo fichero XML eliminará los resultados actuales. ¿Desea continuar
<translation type="obsolete">Archivos XML versión 2 (*.xml)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1402"/>
<location filename="mainwindow.cpp" line="1401"/>
<source>Text files (*.txt)</source>
<translation>Ficheros de texto (*.txt)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1406"/>
<location filename="mainwindow.cpp" line="1405"/>
<source>CSV files (*.csv)</source>
<translation>Ficheros CVS (*.cvs)</translation>
</message>
@ -1250,20 +1250,20 @@ Abrir un nuevo fichero XML eliminará los resultados actuales. ¿Desea continuar
<translation type="vanished">Cppcheck - %1</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1508"/>
<location filename="mainwindow.cpp" line="1507"/>
<source>Project files (*.cppcheck);;All files(*.*)</source>
<translation>Ficheros de proyecto (*.cppcheck;;Todos los ficheros (*.*)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1510"/>
<location filename="mainwindow.cpp" line="1509"/>
<source>Select Project File</source>
<translation>Selecciona el archivo de proyecto</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="162"/>
<location filename="mainwindow.cpp" line="1472"/>
<location filename="mainwindow.cpp" line="1538"/>
<location filename="mainwindow.cpp" line="1672"/>
<location filename="mainwindow.cpp" line="1471"/>
<location filename="mainwindow.cpp" line="1537"/>
<location filename="mainwindow.cpp" line="1671"/>
<source>Project:</source>
<translation>Proyecto:</translation>
</message>
@ -1315,7 +1315,7 @@ Do you want to proceed analysis without using any of these project files?</sourc
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1203"/>
<location filename="mainwindow.cpp" line="1202"/>
<source>Current results will be cleared.
Opening a new XML file will clear current results.
@ -1323,49 +1323,49 @@ Do you want to proceed?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1323"/>
<location filename="mainwindow.cpp" line="1322"/>
<source>Analyzer is running.
Do you want to stop the analysis and exit Cppcheck?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1389"/>
<location filename="mainwindow.cpp" line="1388"/>
<source>XML files (*.xml);;Text files (*.txt);;CSV files (*.csv)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1602"/>
<location filename="mainwindow.cpp" line="1601"/>
<source>Build dir &apos;%1&apos; does not exist, create it?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1610"/>
<location filename="mainwindow.cpp" line="1609"/>
<source>To check the project using addons, you need a build directory.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1633"/>
<location filename="mainwindow.cpp" line="1632"/>
<source>Failed to import &apos;%1&apos;, analysis is stopped</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1657"/>
<location filename="mainwindow.cpp" line="1656"/>
<source>Project files (*.cppcheck)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1659"/>
<location filename="mainwindow.cpp" line="1658"/>
<source>Select Project Filename</source>
<translation>Selecciona el nombre del proyecto</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1710"/>
<location filename="mainwindow.cpp" line="1709"/>
<source>No project file loaded</source>
<translation>No hay ningún proyecto cargado</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1779"/>
<location filename="mainwindow.cpp" line="1778"/>
<source>The project file
%1
@ -2147,22 +2147,22 @@ Options:
<context>
<name>ResultsTree</name>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>File</source>
<translation>Archivo</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Severity</source>
<translation>Severidad</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Line</source>
<translation>Línea</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Summary</source>
<translation>Resumen</translation>
</message>
@ -2273,7 +2273,7 @@ Options:
</message>
<message>
<location filename="resultstree.cpp" line="701"/>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Tag</source>
<translation type="unfinished"></translation>
</message>
@ -2335,17 +2335,17 @@ Por favor selecciona la carpeta donde se encuentra.</translation>
<translation>Selecciona carpeta</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Id</source>
<translation>Id</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Inconclusive</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Since date</source>
<translation type="unfinished"></translation>
</message>
@ -2477,32 +2477,32 @@ Para cambiar el tipo de comportamiento, abra el menú Ver.</translation>
<translation type="obsolete">Mensaje</translation>
</message>
<message>
<location filename="resultsview.cpp" line="455"/>
<location filename="resultsview.cpp" line="454"/>
<source>First included by</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="460"/>
<location filename="resultsview.cpp" line="459"/>
<source>Id</source>
<translation>Id</translation>
</message>
<message>
<location filename="resultsview.cpp" line="462"/>
<location filename="resultsview.cpp" line="461"/>
<source>Bug hunting analysis is incomplete</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="575"/>
<location filename="resultsview.cpp" line="574"/>
<source>Clear Log</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="576"/>
<location filename="resultsview.cpp" line="575"/>
<source>Copy this Log entry</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="577"/>
<location filename="resultsview.cpp" line="576"/>
<source>Copy complete Log</source>
<translation type="unfinished"></translation>
</message>
@ -2758,42 +2758,42 @@ Para cambiar el tipo de comportamiento, abra el menú Ver.</translation>
<translation>N/A</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="220"/>
<location filename="settingsdialog.cpp" line="219"/>
<source>The executable file &quot;%1&quot; is not available</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="231"/>
<location filename="settingsdialog.cpp" line="230"/>
<source>Add a new application</source>
<translation>Añadir una nueva aplicación</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="264"/>
<location filename="settingsdialog.cpp" line="260"/>
<source>Modify an application</source>
<translation>Modificar una aplicación</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="269"/>
<location filename="settingsdialog.cpp" line="265"/>
<source> [Default]</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="294"/>
<location filename="settingsdialog.cpp" line="290"/>
<source>[Default]</source>
<translation>[Predeterminada]</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="349"/>
<location filename="settingsdialog.cpp" line="345"/>
<source>Select python binary</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="356"/>
<location filename="settingsdialog.cpp" line="352"/>
<source>Select MISRA File</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="387"/>
<location filename="settingsdialog.cpp" line="383"/>
<source>Select clang path</source>
<translation type="unfinished"></translation>
</message>

View File

@ -457,13 +457,13 @@ Parameters: -l(line) (file)</source>
<location filename="mainwindow.cpp" line="565"/>
<location filename="mainwindow.cpp" line="697"/>
<location filename="mainwindow.cpp" line="719"/>
<location filename="mainwindow.cpp" line="1202"/>
<location filename="mainwindow.cpp" line="1327"/>
<location filename="mainwindow.cpp" line="1601"/>
<location filename="mainwindow.cpp" line="1609"/>
<location filename="mainwindow.cpp" line="1632"/>
<location filename="mainwindow.cpp" line="1709"/>
<location filename="mainwindow.cpp" line="1784"/>
<location filename="mainwindow.cpp" line="1201"/>
<location filename="mainwindow.cpp" line="1326"/>
<location filename="mainwindow.cpp" line="1600"/>
<location filename="mainwindow.cpp" line="1608"/>
<location filename="mainwindow.cpp" line="1631"/>
<location filename="mainwindow.cpp" line="1708"/>
<location filename="mainwindow.cpp" line="1783"/>
<source>Cppcheck</source>
<translation>Cppcheck</translation>
</message>
@ -636,8 +636,8 @@ Parameters: -l(line) (file)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="807"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Information</source>
<translation type="unfinished"></translation>
</message>
@ -998,7 +998,7 @@ Parameters: -l(line) (file)</source>
</message>
<message>
<location filename="mainwindow.cpp" line="86"/>
<location filename="mainwindow.cpp" line="1470"/>
<location filename="mainwindow.cpp" line="1469"/>
<source>Quick Filter:</source>
<translation type="unfinished"></translation>
</message>
@ -1015,38 +1015,38 @@ Do you want to load this project file instead?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="817"/>
<location filename="mainwindow.cpp" line="816"/>
<source>File not found</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="820"/>
<location filename="mainwindow.cpp" line="819"/>
<source>Bad XML</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="823"/>
<location filename="mainwindow.cpp" line="822"/>
<source>Missing attribute</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="826"/>
<location filename="mainwindow.cpp" line="825"/>
<source>Bad attribute value</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Failed to load the selected library &apos;%1&apos;.
%2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1369"/>
<location filename="mainwindow.cpp" line="1368"/>
<source>License</source>
<translation>Lisenssi</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1376"/>
<location filename="mainwindow.cpp" line="1375"/>
<source>Authors</source>
<translation>Tekijät</translation>
</message>
@ -1056,13 +1056,13 @@ Do you want to load this project file instead?</source>
<translation type="obsolete">XML-tiedostot (*.xml);;Tekstitiedostot (*.txt);;CSV-tiedostot (*.csv)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1391"/>
<location filename="mainwindow.cpp" line="1390"/>
<source>Save the report file</source>
<translation>Tallenna raportti</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1218"/>
<location filename="mainwindow.cpp" line="1398"/>
<location filename="mainwindow.cpp" line="1217"/>
<location filename="mainwindow.cpp" line="1397"/>
<source>XML files (*.xml)</source>
<translation>XML-tiedostot (*xml)</translation>
</message>
@ -1083,58 +1083,58 @@ This is probably because the settings were changed between the Cppcheck versions
<translation type="obsolete">Valitse tarkistettavat tiedostot</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="807"/>
<source>The library &apos;%1&apos; contains unknown elements:
%2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="829"/>
<location filename="mainwindow.cpp" line="828"/>
<source>Unsupported format</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="832"/>
<location filename="mainwindow.cpp" line="831"/>
<source>Duplicate platform type</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="835"/>
<location filename="mainwindow.cpp" line="834"/>
<source>Platform type redefined</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="838"/>
<location filename="mainwindow.cpp" line="837"/>
<source>Unknown element</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="841"/>
<location filename="mainwindow.cpp" line="840"/>
<source>Unknown issue</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Failed to load %1. Your Cppcheck installation is broken. You can use --data-dir=&lt;directory&gt; at the command line to specify where this file is located. Please note that --data-dir is supposed to be used by installation scripts and therefore the GUI does not start when it is used, all that happens is that the setting is configured.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1220"/>
<location filename="mainwindow.cpp" line="1219"/>
<source>Open the report file</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1402"/>
<location filename="mainwindow.cpp" line="1401"/>
<source>Text files (*.txt)</source>
<translation>Tekstitiedostot (*.txt)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1406"/>
<location filename="mainwindow.cpp" line="1405"/>
<source>CSV files (*.csv)</source>
<translation type="unfinished"></translation>
</message>
@ -1143,20 +1143,20 @@ This is probably because the settings were changed between the Cppcheck versions
<translation type="vanished">Cppcheck - %1</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1508"/>
<location filename="mainwindow.cpp" line="1507"/>
<source>Project files (*.cppcheck);;All files(*.*)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1510"/>
<location filename="mainwindow.cpp" line="1509"/>
<source>Select Project File</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="162"/>
<location filename="mainwindow.cpp" line="1472"/>
<location filename="mainwindow.cpp" line="1538"/>
<location filename="mainwindow.cpp" line="1672"/>
<location filename="mainwindow.cpp" line="1471"/>
<location filename="mainwindow.cpp" line="1537"/>
<location filename="mainwindow.cpp" line="1671"/>
<source>Project:</source>
<translation type="unfinished"></translation>
</message>
@ -1208,7 +1208,7 @@ Do you want to proceed analysis without using any of these project files?</sourc
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1203"/>
<location filename="mainwindow.cpp" line="1202"/>
<source>Current results will be cleared.
Opening a new XML file will clear current results.
@ -1216,49 +1216,49 @@ Do you want to proceed?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1323"/>
<location filename="mainwindow.cpp" line="1322"/>
<source>Analyzer is running.
Do you want to stop the analysis and exit Cppcheck?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1389"/>
<location filename="mainwindow.cpp" line="1388"/>
<source>XML files (*.xml);;Text files (*.txt);;CSV files (*.csv)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1602"/>
<location filename="mainwindow.cpp" line="1601"/>
<source>Build dir &apos;%1&apos; does not exist, create it?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1610"/>
<location filename="mainwindow.cpp" line="1609"/>
<source>To check the project using addons, you need a build directory.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1633"/>
<location filename="mainwindow.cpp" line="1632"/>
<source>Failed to import &apos;%1&apos;, analysis is stopped</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1657"/>
<location filename="mainwindow.cpp" line="1656"/>
<source>Project files (*.cppcheck)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1659"/>
<location filename="mainwindow.cpp" line="1658"/>
<source>Select Project Filename</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1710"/>
<location filename="mainwindow.cpp" line="1709"/>
<source>No project file loaded</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1779"/>
<location filename="mainwindow.cpp" line="1778"/>
<source>The project file
%1
@ -1972,22 +1972,22 @@ Options:
<context>
<name>ResultsTree</name>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>File</source>
<translation>Tiedosto</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Severity</source>
<translation>Tyyppi</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Line</source>
<translation>Rivi</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Summary</source>
<translation type="unfinished"></translation>
</message>
@ -2076,7 +2076,7 @@ Options:
</message>
<message>
<location filename="resultstree.cpp" line="701"/>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Tag</source>
<translation type="unfinished"></translation>
</message>
@ -2126,17 +2126,17 @@ Tarkista että ohjelman polku ja parametrit ovat oikeat.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Id</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Inconclusive</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Since date</source>
<translation type="unfinished"></translation>
</message>
@ -2218,32 +2218,32 @@ Määrittääksesi minkä tyyppisiä virheitä näytetään, avaa näkymä valik
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="455"/>
<location filename="resultsview.cpp" line="454"/>
<source>First included by</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="460"/>
<location filename="resultsview.cpp" line="459"/>
<source>Id</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="462"/>
<location filename="resultsview.cpp" line="461"/>
<source>Bug hunting analysis is incomplete</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="575"/>
<location filename="resultsview.cpp" line="574"/>
<source>Clear Log</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="576"/>
<location filename="resultsview.cpp" line="575"/>
<source>Copy this Log entry</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="577"/>
<location filename="resultsview.cpp" line="576"/>
<source>Copy complete Log</source>
<translation type="unfinished"></translation>
</message>
@ -2528,42 +2528,42 @@ Määrittääksesi minkä tyyppisiä virheitä näytetään, avaa näkymä valik
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="220"/>
<location filename="settingsdialog.cpp" line="219"/>
<source>The executable file &quot;%1&quot; is not available</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="231"/>
<location filename="settingsdialog.cpp" line="230"/>
<source>Add a new application</source>
<translation>Lisää uusi ohjelma</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="264"/>
<location filename="settingsdialog.cpp" line="260"/>
<source>Modify an application</source>
<translation>Muokkaa ohjelmaa</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="269"/>
<location filename="settingsdialog.cpp" line="265"/>
<source> [Default]</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="294"/>
<location filename="settingsdialog.cpp" line="290"/>
<source>[Default]</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="349"/>
<location filename="settingsdialog.cpp" line="345"/>
<source>Select python binary</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="356"/>
<location filename="settingsdialog.cpp" line="352"/>
<source>Select MISRA File</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="387"/>
<location filename="settingsdialog.cpp" line="383"/>
<source>Select clang path</source>
<translation type="unfinished"></translation>
</message>

View File

@ -456,13 +456,13 @@ Paramètres : -l(ligne) (fichier)</translation>
<location filename="mainwindow.cpp" line="565"/>
<location filename="mainwindow.cpp" line="697"/>
<location filename="mainwindow.cpp" line="719"/>
<location filename="mainwindow.cpp" line="1202"/>
<location filename="mainwindow.cpp" line="1327"/>
<location filename="mainwindow.cpp" line="1601"/>
<location filename="mainwindow.cpp" line="1609"/>
<location filename="mainwindow.cpp" line="1632"/>
<location filename="mainwindow.cpp" line="1709"/>
<location filename="mainwindow.cpp" line="1784"/>
<location filename="mainwindow.cpp" line="1201"/>
<location filename="mainwindow.cpp" line="1326"/>
<location filename="mainwindow.cpp" line="1600"/>
<location filename="mainwindow.cpp" line="1608"/>
<location filename="mainwindow.cpp" line="1631"/>
<location filename="mainwindow.cpp" line="1708"/>
<location filename="mainwindow.cpp" line="1783"/>
<source>Cppcheck</source>
<translation type="unfinished"></translation>
</message>
@ -618,33 +618,33 @@ Paramètres : -l(ligne) (fichier)</translation>
<translation type="obsolete">Sélectionner le répertoire à vérifier</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1369"/>
<location filename="mainwindow.cpp" line="1368"/>
<source>License</source>
<translation>Licence</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1376"/>
<location filename="mainwindow.cpp" line="1375"/>
<source>Authors</source>
<translation>Auteurs</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1391"/>
<location filename="mainwindow.cpp" line="1390"/>
<source>Save the report file</source>
<translation>Sauvegarder le rapport</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1218"/>
<location filename="mainwindow.cpp" line="1398"/>
<location filename="mainwindow.cpp" line="1217"/>
<location filename="mainwindow.cpp" line="1397"/>
<source>XML files (*.xml)</source>
<translation>Fichiers XML (*.xml)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1402"/>
<location filename="mainwindow.cpp" line="1401"/>
<source>Text files (*.txt)</source>
<translation>Fichiers Texte (*.txt)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1406"/>
<location filename="mainwindow.cpp" line="1405"/>
<source>CSV files (*.csv)</source>
<translation>Fichiers CSV (*.csv)</translation>
</message>
@ -781,8 +781,8 @@ Paramètres : -l(ligne) (fichier)</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="807"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Information</source>
<translation>Information</translation>
</message>
@ -806,7 +806,7 @@ Paramètres : -l(ligne) (fichier)</translation>
<translation>Vous devez d&apos;abord fermer le projet avant de choisir des fichiers/répertoires</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1220"/>
<location filename="mainwindow.cpp" line="1219"/>
<source>Open the report file</source>
<translation>Ouvrir le rapport</translation>
</message>
@ -819,27 +819,27 @@ Do you want to stop the checking and exit Cppcheck?</source>
Voulez-vous arrêter la vérification et quitter CppCheck ?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1508"/>
<location filename="mainwindow.cpp" line="1507"/>
<source>Project files (*.cppcheck);;All files(*.*)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1510"/>
<location filename="mainwindow.cpp" line="1509"/>
<source>Select Project File</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1610"/>
<location filename="mainwindow.cpp" line="1609"/>
<source>To check the project using addons, you need a build directory.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1659"/>
<location filename="mainwindow.cpp" line="1658"/>
<source>Select Project Filename</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1710"/>
<location filename="mainwindow.cpp" line="1709"/>
<source>No project file loaded</source>
<translation type="unfinished"></translation>
</message>
@ -862,7 +862,7 @@ This is probably because the settings were changed between the Cppcheck versions
</message>
<message>
<location filename="mainwindow.cpp" line="86"/>
<location filename="mainwindow.cpp" line="1470"/>
<location filename="mainwindow.cpp" line="1469"/>
<source>Quick Filter:</source>
<translation>Filtre rapide : </translation>
</message>
@ -875,14 +875,14 @@ Do you want to load this project file instead?</source>
</message>
<message>
<location filename="mainwindow.cpp" line="162"/>
<location filename="mainwindow.cpp" line="1472"/>
<location filename="mainwindow.cpp" line="1538"/>
<location filename="mainwindow.cpp" line="1672"/>
<location filename="mainwindow.cpp" line="1471"/>
<location filename="mainwindow.cpp" line="1537"/>
<location filename="mainwindow.cpp" line="1671"/>
<source>Project:</source>
<translation>Projet : </translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1779"/>
<location filename="mainwindow.cpp" line="1778"/>
<source>The project file
%1
@ -945,56 +945,56 @@ L&apos;ouverture d&apos;un nouveau fichier XML effacera les resultats. Voulez-vo
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Error</source>
<translation>Erreur</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="817"/>
<location filename="mainwindow.cpp" line="816"/>
<source>File not found</source>
<translation>Fichier introuvable</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="820"/>
<location filename="mainwindow.cpp" line="819"/>
<source>Bad XML</source>
<translation>Mauvais fichier XML</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="823"/>
<location filename="mainwindow.cpp" line="822"/>
<source>Missing attribute</source>
<translation>Attribut manquant</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="826"/>
<location filename="mainwindow.cpp" line="825"/>
<source>Bad attribute value</source>
<translation>Mauvaise valeur d&apos;attribut</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Failed to load the selected library &apos;%1&apos;.
%2</source>
<translation>Echec lors du chargement de la bibliothèque &apos;%1&apos;.
%2</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="829"/>
<location filename="mainwindow.cpp" line="828"/>
<source>Unsupported format</source>
<translation>Format non supporté</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="807"/>
<source>The library &apos;%1&apos; contains unknown elements:
%2</source>
<translation>La bibliothèque &apos;%1&apos; contient des éléments inconnus:
%2</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="832"/>
<location filename="mainwindow.cpp" line="831"/>
<source>Duplicate platform type</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="835"/>
<location filename="mainwindow.cpp" line="834"/>
<source>Platform type redefined</source>
<translation type="unfinished"></translation>
</message>
@ -1036,12 +1036,12 @@ L&apos;ouverture d&apos;un nouveau fichier XML effacera les resultats. Voulez-vo
<translation type="obsolete">&amp;Revérifier tous les fichiers</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="838"/>
<location filename="mainwindow.cpp" line="837"/>
<source>Unknown element</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="841"/>
<location filename="mainwindow.cpp" line="840"/>
<source>Unknown issue</source>
<translation type="unfinished"></translation>
</message>
@ -1069,12 +1069,12 @@ Options:
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Failed to load %1. Your Cppcheck installation is broken. You can use --data-dir=&lt;directory&gt; at the command line to specify where this file is located. Please note that --data-dir is supposed to be used by installation scripts and therefore the GUI does not start when it is used, all that happens is that the setting is configured.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1602"/>
<location filename="mainwindow.cpp" line="1601"/>
<source>Build dir &apos;%1&apos; does not exist, create it?</source>
<translation type="unfinished"></translation>
</message>
@ -1102,7 +1102,7 @@ Options:
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1389"/>
<location filename="mainwindow.cpp" line="1388"/>
<source>XML files (*.xml);;Text files (*.txt);;CSV files (*.csv)</source>
<translation type="unfinished"></translation>
</message>
@ -1134,7 +1134,7 @@ Do you want to proceed analysis without using any of these project files?</sourc
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1323"/>
<location filename="mainwindow.cpp" line="1322"/>
<source>Analyzer is running.
Do you want to stop the analysis and exit Cppcheck?</source>
@ -1281,12 +1281,12 @@ Do you want to stop the analysis and exit Cppcheck?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1633"/>
<location filename="mainwindow.cpp" line="1632"/>
<source>Failed to import &apos;%1&apos;, analysis is stopped</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1657"/>
<location filename="mainwindow.cpp" line="1656"/>
<source>Project files (*.cppcheck)</source>
<translation type="unfinished"></translation>
</message>
@ -1331,7 +1331,7 @@ Do you want to stop the analysis and exit Cppcheck?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1203"/>
<location filename="mainwindow.cpp" line="1202"/>
<source>Current results will be cleared.
Opening a new XML file will clear current results.
@ -2053,17 +2053,17 @@ Do you want to proceed?</source>
<context>
<name>ResultsTree</name>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>File</source>
<translation type="unfinished">Fichier</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Severity</source>
<translation type="unfinished">Sévérité</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Line</source>
<translation type="unfinished">Ligne</translation>
</message>
@ -2110,7 +2110,7 @@ Merci de vérifier que le chemin de l&apos;application et que les paramètres so
<translation>erreur</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Summary</source>
<translation>Résumé</translation>
</message>
@ -2187,7 +2187,7 @@ Please select the default editor application in preferences/Applications.</sourc
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Id</source>
<translation>Id</translation>
</message>
@ -2206,7 +2206,7 @@ Please select the default editor application in preferences/Applications.</sourc
<translation>Ouvrir l&apos;emplacement du fichier</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Inconclusive</source>
<translation type="unfinished"></translation>
</message>
@ -2227,7 +2227,7 @@ Please select the default editor application in preferences/Applications.</sourc
</message>
<message>
<location filename="resultstree.cpp" line="701"/>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Tag</source>
<translation type="unfinished"></translation>
</message>
@ -2237,7 +2237,7 @@ Please select the default editor application in preferences/Applications.</sourc
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Since date</source>
<translation type="unfinished"></translation>
</message>
@ -2293,7 +2293,7 @@ To toggle what kind of errors are shown, open view menu.</source>
Pour configurer les erreurs affichées, ouvrez le menu d&apos;affichage.</translation>
</message>
<message>
<location filename="resultsview.cpp" line="462"/>
<location filename="resultsview.cpp" line="461"/>
<source>Bug hunting analysis is incomplete</source>
<translation type="unfinished"></translation>
</message>
@ -2327,7 +2327,7 @@ Pour configurer les erreurs affichées, ouvrez le menu d&apos;affichage.</transl
<translation>%p% (%1 fichiers sur %2 vérifiés)</translation>
</message>
<message>
<location filename="resultsview.cpp" line="460"/>
<location filename="resultsview.cpp" line="459"/>
<source>Id</source>
<translation>Id</translation>
</message>
@ -2342,7 +2342,7 @@ Pour configurer les erreurs affichées, ouvrez le menu d&apos;affichage.</transl
<translation>Aucune erreur trouvée. Il n&apos;y a rien à imprimer</translation>
</message>
<message>
<location filename="resultsview.cpp" line="455"/>
<location filename="resultsview.cpp" line="454"/>
<source>First included by</source>
<translation type="unfinished"></translation>
</message>
@ -2389,17 +2389,17 @@ Pour configurer les erreurs affichées, ouvrez le menu d&apos;affichage.</transl
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="575"/>
<location filename="resultsview.cpp" line="574"/>
<source>Clear Log</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="576"/>
<location filename="resultsview.cpp" line="575"/>
<source>Copy this Log entry</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="577"/>
<location filename="resultsview.cpp" line="576"/>
<source>Copy complete Log</source>
<translation type="unfinished"></translation>
</message>
@ -2638,12 +2638,12 @@ Pour configurer les erreurs affichées, ouvrez le menu d&apos;affichage.</transl
<context>
<name>SettingsDialog</name>
<message>
<location filename="settingsdialog.cpp" line="231"/>
<location filename="settingsdialog.cpp" line="230"/>
<source>Add a new application</source>
<translation>Ajouter une nouvelle application</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="264"/>
<location filename="settingsdialog.cpp" line="260"/>
<source>Modify an application</source>
<translation>Modifier une application</translation>
</message>
@ -2657,32 +2657,32 @@ Pour configurer les erreurs affichées, ouvrez le menu d&apos;affichage.</transl
<translation type="obsolete">Selectionner un répertoire à inclure</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="294"/>
<location filename="settingsdialog.cpp" line="290"/>
<source>[Default]</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="269"/>
<location filename="settingsdialog.cpp" line="265"/>
<source> [Default]</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="220"/>
<location filename="settingsdialog.cpp" line="219"/>
<source>The executable file &quot;%1&quot; is not available</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="349"/>
<location filename="settingsdialog.cpp" line="345"/>
<source>Select python binary</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="387"/>
<location filename="settingsdialog.cpp" line="383"/>
<source>Select clang path</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="356"/>
<location filename="settingsdialog.cpp" line="352"/>
<source>Select MISRA File</source>
<translation type="unfinished"></translation>
</message>

View File

@ -486,13 +486,13 @@ Parametri: -l(line) (file)
<location filename="mainwindow.cpp" line="565"/>
<location filename="mainwindow.cpp" line="697"/>
<location filename="mainwindow.cpp" line="719"/>
<location filename="mainwindow.cpp" line="1202"/>
<location filename="mainwindow.cpp" line="1327"/>
<location filename="mainwindow.cpp" line="1601"/>
<location filename="mainwindow.cpp" line="1609"/>
<location filename="mainwindow.cpp" line="1632"/>
<location filename="mainwindow.cpp" line="1709"/>
<location filename="mainwindow.cpp" line="1784"/>
<location filename="mainwindow.cpp" line="1201"/>
<location filename="mainwindow.cpp" line="1326"/>
<location filename="mainwindow.cpp" line="1600"/>
<location filename="mainwindow.cpp" line="1608"/>
<location filename="mainwindow.cpp" line="1631"/>
<location filename="mainwindow.cpp" line="1708"/>
<location filename="mainwindow.cpp" line="1783"/>
<source>Cppcheck</source>
<translation>Cppcheck</translation>
</message>
@ -681,8 +681,8 @@ Parametri: -l(line) (file)
<translation>Mostra &amp;i nascosti</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="807"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Information</source>
<translation>Informazione</translation>
</message>
@ -1079,7 +1079,7 @@ Parametri: -l(line) (file)
</message>
<message>
<location filename="mainwindow.cpp" line="86"/>
<location filename="mainwindow.cpp" line="1470"/>
<location filename="mainwindow.cpp" line="1469"/>
<source>Quick Filter:</source>
<translation>Rapido filtro:</translation>
</message>
@ -1106,43 +1106,43 @@ Do you want to proceed checking without using any of these project files?</sourc
Vuoi procedere alla scansione senza usare qualcuno di questi file di progetto?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="817"/>
<location filename="mainwindow.cpp" line="816"/>
<source>File not found</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="820"/>
<location filename="mainwindow.cpp" line="819"/>
<source>Bad XML</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="823"/>
<location filename="mainwindow.cpp" line="822"/>
<source>Missing attribute</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="826"/>
<location filename="mainwindow.cpp" line="825"/>
<source>Bad attribute value</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="829"/>
<location filename="mainwindow.cpp" line="828"/>
<source>Unsupported format</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Failed to load the selected library &apos;%1&apos;.
%2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1369"/>
<location filename="mainwindow.cpp" line="1368"/>
<source>License</source>
<translation>Licenza</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1376"/>
<location filename="mainwindow.cpp" line="1375"/>
<source>Authors</source>
<translation>Autori</translation>
</message>
@ -1151,13 +1151,13 @@ Vuoi procedere alla scansione senza usare qualcuno di questi file di progetto?</
<translation type="obsolete">File XML Versione 2 (*.xml);;File XML Versione 1 (*.xml);;File di testo (*.txt);;File CSV (*.csv)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1391"/>
<location filename="mainwindow.cpp" line="1390"/>
<source>Save the report file</source>
<translation>Salva il file di rapporto</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1218"/>
<location filename="mainwindow.cpp" line="1398"/>
<location filename="mainwindow.cpp" line="1217"/>
<location filename="mainwindow.cpp" line="1397"/>
<source>XML files (*.xml)</source>
<translation>File XML (*.xml)</translation>
</message>
@ -1180,38 +1180,38 @@ Probabilmente ciò è avvenuto perché le impostazioni sono state modificate tra
<translation type="obsolete">Seleziona i file da scansionare</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="807"/>
<source>The library &apos;%1&apos; contains unknown elements:
%2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="832"/>
<location filename="mainwindow.cpp" line="831"/>
<source>Duplicate platform type</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="835"/>
<location filename="mainwindow.cpp" line="834"/>
<source>Platform type redefined</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="838"/>
<location filename="mainwindow.cpp" line="837"/>
<source>Unknown element</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="841"/>
<location filename="mainwindow.cpp" line="840"/>
<source>Unknown issue</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Failed to load %1. Your Cppcheck installation is broken. You can use --data-dir=&lt;directory&gt; at the command line to specify where this file is located. Please note that --data-dir is supposed to be used by installation scripts and therefore the GUI does not start when it is used, all that happens is that the setting is configured.</source>
<translation type="unfinished"></translation>
</message>
@ -1224,7 +1224,7 @@ Opening a new XML file will clear current results.Do you want to proceed?</sourc
L&apos;apertura di un nuovo file XML ripulirà i risultati correnti. Vuoi procedere?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1220"/>
<location filename="mainwindow.cpp" line="1219"/>
<source>Open the report file</source>
<translation>Apri il file di rapporto</translation>
</message>
@ -1245,12 +1245,12 @@ Vuoi fermare la scansione ed uscire da Cppcheck?</translation>
<translation type="obsolete">Files XML versione 2 (*.xml)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1402"/>
<location filename="mainwindow.cpp" line="1401"/>
<source>Text files (*.txt)</source>
<translation>File di testo (*.txt)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1406"/>
<location filename="mainwindow.cpp" line="1405"/>
<source>CSV files (*.csv)</source>
<translation>Files CSV (*.csv)</translation>
</message>
@ -1271,20 +1271,20 @@ The user interface language has been reset to English. Open the Preferences-dial
L&apos;interfaccia utente è stata risettata in Inglese. Apri la finestra di dialogo Preferenze per selezionare una qualunque lingua a disposizione.</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1508"/>
<location filename="mainwindow.cpp" line="1507"/>
<source>Project files (*.cppcheck);;All files(*.*)</source>
<translation>Files di progetto (*.cppcheck);;Tutti i files(*.*)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1510"/>
<location filename="mainwindow.cpp" line="1509"/>
<source>Select Project File</source>
<translation>Seleziona il file di progetto</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="162"/>
<location filename="mainwindow.cpp" line="1472"/>
<location filename="mainwindow.cpp" line="1538"/>
<location filename="mainwindow.cpp" line="1672"/>
<location filename="mainwindow.cpp" line="1471"/>
<location filename="mainwindow.cpp" line="1537"/>
<location filename="mainwindow.cpp" line="1671"/>
<source>Project:</source>
<translation>Progetto:</translation>
</message>
@ -1336,7 +1336,7 @@ Do you want to proceed analysis without using any of these project files?</sourc
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1203"/>
<location filename="mainwindow.cpp" line="1202"/>
<source>Current results will be cleared.
Opening a new XML file will clear current results.
@ -1344,49 +1344,49 @@ Do you want to proceed?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1323"/>
<location filename="mainwindow.cpp" line="1322"/>
<source>Analyzer is running.
Do you want to stop the analysis and exit Cppcheck?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1389"/>
<location filename="mainwindow.cpp" line="1388"/>
<source>XML files (*.xml);;Text files (*.txt);;CSV files (*.csv)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1602"/>
<location filename="mainwindow.cpp" line="1601"/>
<source>Build dir &apos;%1&apos; does not exist, create it?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1610"/>
<location filename="mainwindow.cpp" line="1609"/>
<source>To check the project using addons, you need a build directory.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1633"/>
<location filename="mainwindow.cpp" line="1632"/>
<source>Failed to import &apos;%1&apos;, analysis is stopped</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1657"/>
<location filename="mainwindow.cpp" line="1656"/>
<source>Project files (*.cppcheck)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1659"/>
<location filename="mainwindow.cpp" line="1658"/>
<source>Select Project Filename</source>
<translation>Seleziona il nome del file di progetto</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1710"/>
<location filename="mainwindow.cpp" line="1709"/>
<source>No project file loaded</source>
<translation>Nessun file di progetto caricato</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1779"/>
<location filename="mainwindow.cpp" line="1778"/>
<source>The project file
%1
@ -2144,22 +2144,22 @@ Options:
<context>
<name>ResultsTree</name>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>File</source>
<translation>File</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Severity</source>
<translation>Severità</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Line</source>
<translation>Linea</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Summary</source>
<translation>Riassunto</translation>
</message>
@ -2260,7 +2260,7 @@ Options:
</message>
<message>
<location filename="resultstree.cpp" line="701"/>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Tag</source>
<translation type="unfinished"></translation>
</message>
@ -2321,17 +2321,17 @@ Per favore selezioa la cartella dove il file è posizionato.</translation>
<translation>Seleziona Cartella</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Id</source>
<translation>Id</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Inconclusive</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Since date</source>
<translation type="unfinished"></translation>
</message>
@ -2421,32 +2421,32 @@ Per vedere il tipo di errori che sono mostrati, apri il menu Visualizza.</transl
<translation type="obsolete">Messaggio</translation>
</message>
<message>
<location filename="resultsview.cpp" line="455"/>
<location filename="resultsview.cpp" line="454"/>
<source>First included by</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="460"/>
<location filename="resultsview.cpp" line="459"/>
<source>Id</source>
<translation>Id</translation>
</message>
<message>
<location filename="resultsview.cpp" line="462"/>
<location filename="resultsview.cpp" line="461"/>
<source>Bug hunting analysis is incomplete</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="575"/>
<location filename="resultsview.cpp" line="574"/>
<source>Clear Log</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="576"/>
<location filename="resultsview.cpp" line="575"/>
<source>Copy this Log entry</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="577"/>
<location filename="resultsview.cpp" line="576"/>
<source>Copy complete Log</source>
<translation type="unfinished"></translation>
</message>
@ -2754,42 +2754,42 @@ Per vedere il tipo di errori che sono mostrati, apri il menu Visualizza.</transl
<translation>N/A</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="220"/>
<location filename="settingsdialog.cpp" line="219"/>
<source>The executable file &quot;%1&quot; is not available</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="231"/>
<location filename="settingsdialog.cpp" line="230"/>
<source>Add a new application</source>
<translation>Aggiungi una nuova applicazione</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="264"/>
<location filename="settingsdialog.cpp" line="260"/>
<source>Modify an application</source>
<translation>Modifica un&apos;applicazione</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="269"/>
<location filename="settingsdialog.cpp" line="265"/>
<source> [Default]</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="294"/>
<location filename="settingsdialog.cpp" line="290"/>
<source>[Default]</source>
<translation>[Predefinito]</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="349"/>
<location filename="settingsdialog.cpp" line="345"/>
<source>Select python binary</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="356"/>
<location filename="settingsdialog.cpp" line="352"/>
<source>Select MISRA File</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="387"/>
<location filename="settingsdialog.cpp" line="383"/>
<source>Select clang path</source>
<translation type="unfinished"></translation>
</message>

View File

@ -506,13 +506,13 @@ Parameters: -l(line) (file)</translation>
<location filename="mainwindow.cpp" line="565"/>
<location filename="mainwindow.cpp" line="697"/>
<location filename="mainwindow.cpp" line="719"/>
<location filename="mainwindow.cpp" line="1202"/>
<location filename="mainwindow.cpp" line="1327"/>
<location filename="mainwindow.cpp" line="1601"/>
<location filename="mainwindow.cpp" line="1609"/>
<location filename="mainwindow.cpp" line="1632"/>
<location filename="mainwindow.cpp" line="1709"/>
<location filename="mainwindow.cpp" line="1784"/>
<location filename="mainwindow.cpp" line="1201"/>
<location filename="mainwindow.cpp" line="1326"/>
<location filename="mainwindow.cpp" line="1600"/>
<location filename="mainwindow.cpp" line="1608"/>
<location filename="mainwindow.cpp" line="1631"/>
<location filename="mainwindow.cpp" line="1708"/>
<location filename="mainwindow.cpp" line="1783"/>
<source>Cppcheck</source>
<translation>Cppcheck</translation>
</message>
@ -696,8 +696,8 @@ Parameters: -l(line) (file)</translation>
<translation type="obsolete"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="807"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Information</source>
<translation></translation>
</message>
@ -1130,7 +1130,7 @@ Cppcheckの古いバージョンの設定には互換性がありません。エ
</message>
<message>
<location filename="mainwindow.cpp" line="86"/>
<location filename="mainwindow.cpp" line="1470"/>
<location filename="mainwindow.cpp" line="1469"/>
<source>Quick Filter:</source>
<translation></translation>
</message>
@ -1166,66 +1166,66 @@ Do you want to proceed checking without using any of these project files?</sourc
</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="807"/>
<source>The library &apos;%1&apos; contains unknown elements:
%2</source>
<translation> &apos;%1&apos;
%2</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="817"/>
<location filename="mainwindow.cpp" line="816"/>
<source>File not found</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="820"/>
<location filename="mainwindow.cpp" line="819"/>
<source>Bad XML</source>
<translation>XML</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="823"/>
<location filename="mainwindow.cpp" line="822"/>
<source>Missing attribute</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="826"/>
<location filename="mainwindow.cpp" line="825"/>
<source>Bad attribute value</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="829"/>
<location filename="mainwindow.cpp" line="828"/>
<source>Unsupported format</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="832"/>
<location filename="mainwindow.cpp" line="831"/>
<source>Duplicate platform type</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="835"/>
<location filename="mainwindow.cpp" line="834"/>
<source>Platform type redefined</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="838"/>
<location filename="mainwindow.cpp" line="837"/>
<source>Unknown element</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="841"/>
<location filename="mainwindow.cpp" line="840"/>
<source>Unknown issue</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Failed to load the selected library &apos;%1&apos;.
%2</source>
<translation> &apos;%1&apos;
%2</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Error</source>
<translation></translation>
</message>
@ -1234,7 +1234,7 @@ Do you want to proceed checking without using any of these project files?</sourc
<translation type="obsolete">%1CppCheckのインストールに失敗しています --data-dir=&lt;directory&gt; </translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Failed to load %1. Your Cppcheck installation is broken. You can use --data-dir=&lt;directory&gt; at the command line to specify where this file is located. Please note that --data-dir is supposed to be used by installation scripts and therefore the GUI does not start when it is used, all that happens is that the setting is configured.</source>
<translation>%1 Cppcheck --data-dir=&lt;directory&gt; --data-dir GUI版ではサポートされていません調</translation>
</message>
@ -1247,13 +1247,13 @@ Opening a new XML file will clear current results.Do you want to proceed?</sourc
XMLファイルを開くと現在の結果が削除されます</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1218"/>
<location filename="mainwindow.cpp" line="1398"/>
<location filename="mainwindow.cpp" line="1217"/>
<location filename="mainwindow.cpp" line="1397"/>
<source>XML files (*.xml)</source>
<translation>XML (*.xml)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1220"/>
<location filename="mainwindow.cpp" line="1219"/>
<source>Open the report file</source>
<translation></translation>
</message>
@ -1266,12 +1266,12 @@ Do you want to stop the checking and exit Cppcheck?</source>
Cppcheckを終了しますか.</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1369"/>
<location filename="mainwindow.cpp" line="1368"/>
<source>License</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1376"/>
<location filename="mainwindow.cpp" line="1375"/>
<source>Authors</source>
<translation></translation>
</message>
@ -1281,7 +1281,7 @@ Do you want to stop the checking and exit Cppcheck?</source>
<translation type="obsolete">XML (*.xml);; (*.txt);;CSV形式ファイル (*.csv)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1391"/>
<location filename="mainwindow.cpp" line="1390"/>
<source>Save the report file</source>
<translation></translation>
</message>
@ -1294,12 +1294,12 @@ Do you want to stop the checking and exit Cppcheck?</source>
<translation type="obsolete">XMLファイルのバージョン2</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1402"/>
<location filename="mainwindow.cpp" line="1401"/>
<source>Text files (*.txt)</source>
<translation> (*.txt)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1406"/>
<location filename="mainwindow.cpp" line="1405"/>
<source>CSV files (*.csv)</source>
<translation>CSV形式ファイル (*.csv)</translation>
</message>
@ -1308,20 +1308,20 @@ Do you want to stop the checking and exit Cppcheck?</source>
<translation type="vanished">Cppcheck - %1</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1508"/>
<location filename="mainwindow.cpp" line="1507"/>
<source>Project files (*.cppcheck);;All files(*.*)</source>
<translation> (*.cppcheck);;(*.*)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1510"/>
<location filename="mainwindow.cpp" line="1509"/>
<source>Select Project File</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="162"/>
<location filename="mainwindow.cpp" line="1472"/>
<location filename="mainwindow.cpp" line="1538"/>
<location filename="mainwindow.cpp" line="1672"/>
<location filename="mainwindow.cpp" line="1471"/>
<location filename="mainwindow.cpp" line="1537"/>
<location filename="mainwindow.cpp" line="1671"/>
<source>Project:</source>
<translation>:</translation>
</message>
@ -1375,7 +1375,7 @@ Do you want to proceed analysis without using any of these project files?</sourc
使?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1203"/>
<location filename="mainwindow.cpp" line="1202"/>
<source>Current results will be cleared.
Opening a new XML file will clear current results.
@ -1385,7 +1385,7 @@ Do you want to proceed?</source>
XMLファイルを開くと現在の結果が削除されます</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1323"/>
<location filename="mainwindow.cpp" line="1322"/>
<source>Analyzer is running.
Do you want to stop the analysis and exit Cppcheck?</source>
@ -1394,42 +1394,42 @@ Do you want to stop the analysis and exit Cppcheck?</source>
Cppcheckを終了しますか?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1389"/>
<location filename="mainwindow.cpp" line="1388"/>
<source>XML files (*.xml);;Text files (*.txt);;CSV files (*.csv)</source>
<translation>XML (*.xml);; (*.txt);;CSVファイル (*.csv)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1602"/>
<location filename="mainwindow.cpp" line="1601"/>
<source>Build dir &apos;%1&apos; does not exist, create it?</source>
<translation>&apos;%1&apos;?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1610"/>
<location filename="mainwindow.cpp" line="1609"/>
<source>To check the project using addons, you need a build directory.</source>
<translation>使</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1633"/>
<location filename="mainwindow.cpp" line="1632"/>
<source>Failed to import &apos;%1&apos;, analysis is stopped</source>
<translation>&apos;%1&apos;()</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1657"/>
<location filename="mainwindow.cpp" line="1656"/>
<source>Project files (*.cppcheck)</source>
<translation> (*.cppcheck)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1659"/>
<location filename="mainwindow.cpp" line="1658"/>
<source>Select Project Filename</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1710"/>
<location filename="mainwindow.cpp" line="1709"/>
<source>No project file loaded</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1779"/>
<location filename="mainwindow.cpp" line="1778"/>
<source>The project file
%1
@ -2269,22 +2269,22 @@ Options:
<context>
<name>ResultsTree</name>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>File</source>
<translation></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Severity</source>
<translation></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Line</source>
<translation></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Summary</source>
<translation></translation>
</message>
@ -2385,7 +2385,7 @@ Options:
</message>
<message>
<location filename="resultstree.cpp" line="701"/>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Tag</source>
<translation></translation>
</message>
@ -2447,17 +2447,17 @@ Please select the directory where file is located.</source>
<translation></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Id</source>
<translation>Id</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Inconclusive</source>
<translation></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Since date</source>
<translation></translation>
</message>
@ -2602,32 +2602,32 @@ To toggle what kind of errors are shown, open view menu.</source>
<translation type="obsolete"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="455"/>
<location filename="resultsview.cpp" line="454"/>
<source>First included by</source>
<translation></translation>
</message>
<message>
<location filename="resultsview.cpp" line="460"/>
<location filename="resultsview.cpp" line="459"/>
<source>Id</source>
<translation>ID</translation>
</message>
<message>
<location filename="resultsview.cpp" line="462"/>
<location filename="resultsview.cpp" line="461"/>
<source>Bug hunting analysis is incomplete</source>
<translation></translation>
</message>
<message>
<location filename="resultsview.cpp" line="575"/>
<location filename="resultsview.cpp" line="574"/>
<source>Clear Log</source>
<translation></translation>
</message>
<message>
<location filename="resultsview.cpp" line="576"/>
<location filename="resultsview.cpp" line="575"/>
<source>Copy this Log entry</source>
<translation></translation>
</message>
<message>
<location filename="resultsview.cpp" line="577"/>
<location filename="resultsview.cpp" line="576"/>
<source>Copy complete Log</source>
<translation></translation>
</message>
@ -2880,42 +2880,42 @@ To toggle what kind of errors are shown, open view menu.</source>
<translation>N/A</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="220"/>
<location filename="settingsdialog.cpp" line="219"/>
<source>The executable file &quot;%1&quot; is not available</source>
<translation> &quot;%1&quot; </translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="231"/>
<location filename="settingsdialog.cpp" line="230"/>
<source>Add a new application</source>
<translation></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="264"/>
<location filename="settingsdialog.cpp" line="260"/>
<source>Modify an application</source>
<translation></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="269"/>
<location filename="settingsdialog.cpp" line="265"/>
<source> [Default]</source>
<translation> []</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="294"/>
<location filename="settingsdialog.cpp" line="290"/>
<source>[Default]</source>
<translation>[]</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="349"/>
<location filename="settingsdialog.cpp" line="345"/>
<source>Select python binary</source>
<translation>pythonの場所の選択</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="356"/>
<location filename="settingsdialog.cpp" line="352"/>
<source>Select MISRA File</source>
<translation>MISRAファイルの選択</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="387"/>
<location filename="settingsdialog.cpp" line="383"/>
<source>Select clang path</source>
<translation>clangのパスの選択</translation>
</message>

View File

@ -487,13 +487,13 @@ Kate로 파일을 열고, 해당 행으로 이동하는 예제:
<location filename="mainwindow.cpp" line="565"/>
<location filename="mainwindow.cpp" line="697"/>
<location filename="mainwindow.cpp" line="719"/>
<location filename="mainwindow.cpp" line="1202"/>
<location filename="mainwindow.cpp" line="1327"/>
<location filename="mainwindow.cpp" line="1601"/>
<location filename="mainwindow.cpp" line="1609"/>
<location filename="mainwindow.cpp" line="1632"/>
<location filename="mainwindow.cpp" line="1709"/>
<location filename="mainwindow.cpp" line="1784"/>
<location filename="mainwindow.cpp" line="1201"/>
<location filename="mainwindow.cpp" line="1326"/>
<location filename="mainwindow.cpp" line="1600"/>
<location filename="mainwindow.cpp" line="1608"/>
<location filename="mainwindow.cpp" line="1631"/>
<location filename="mainwindow.cpp" line="1708"/>
<location filename="mainwindow.cpp" line="1783"/>
<source>Cppcheck</source>
<translation>Cppcheck</translation>
</message>
@ -778,8 +778,8 @@ Kate로 파일을 열고, 해당 행으로 이동하는 예제:
<translation> (&amp;H)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="807"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Information</source>
<translation></translation>
</message>
@ -850,7 +850,7 @@ Kate로 파일을 열고, 해당 행으로 이동하는 예제:
</message>
<message>
<location filename="mainwindow.cpp" line="86"/>
<location filename="mainwindow.cpp" line="1470"/>
<location filename="mainwindow.cpp" line="1469"/>
<source>Quick Filter:</source>
<translation> :</translation>
</message>
@ -894,13 +894,13 @@ Do you want to proceed checking without using any of these project files?</sourc
?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1218"/>
<location filename="mainwindow.cpp" line="1398"/>
<location filename="mainwindow.cpp" line="1217"/>
<location filename="mainwindow.cpp" line="1397"/>
<source>XML files (*.xml)</source>
<translation>XML (*.xml)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1220"/>
<location filename="mainwindow.cpp" line="1219"/>
<source>Open the report file</source>
<translation> </translation>
</message>
@ -913,12 +913,12 @@ Do you want to stop the checking and exit Cppcheck?</source>
Cppcheck을 ?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1369"/>
<location filename="mainwindow.cpp" line="1368"/>
<source>License</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1376"/>
<location filename="mainwindow.cpp" line="1375"/>
<source>Authors</source>
<translation></translation>
</message>
@ -927,7 +927,7 @@ Do you want to stop the checking and exit Cppcheck?</source>
<translation type="obsolete">XML 2 (*.xml);;XML 1 (*.xml);; (*.txt);;CSV (*.csv)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1391"/>
<location filename="mainwindow.cpp" line="1390"/>
<source>Save the report file</source>
<translation> </translation>
</message>
@ -940,12 +940,12 @@ Do you want to stop the checking and exit Cppcheck?</source>
<translation type="obsolete">XML 2 (*.xml)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1402"/>
<location filename="mainwindow.cpp" line="1401"/>
<source>Text files (*.txt)</source>
<translation> (*.txt)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1406"/>
<location filename="mainwindow.cpp" line="1405"/>
<source>CSV files (*.csv)</source>
<translation>CSV (*.csv)</translation>
</message>
@ -966,40 +966,40 @@ The user interface language has been reset to English. Open the Preferences-dial
. .</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1508"/>
<location filename="mainwindow.cpp" line="1507"/>
<source>Project files (*.cppcheck);;All files(*.*)</source>
<translation> (*.cppcheck);; (*.*)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1510"/>
<location filename="mainwindow.cpp" line="1509"/>
<source>Select Project File</source>
<translation> </translation>
</message>
<message>
<location filename="mainwindow.cpp" line="162"/>
<location filename="mainwindow.cpp" line="1472"/>
<location filename="mainwindow.cpp" line="1538"/>
<location filename="mainwindow.cpp" line="1672"/>
<location filename="mainwindow.cpp" line="1471"/>
<location filename="mainwindow.cpp" line="1537"/>
<location filename="mainwindow.cpp" line="1671"/>
<source>Project:</source>
<translation>:</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1610"/>
<location filename="mainwindow.cpp" line="1609"/>
<source>To check the project using addons, you need a build directory.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1659"/>
<location filename="mainwindow.cpp" line="1658"/>
<source>Select Project Filename</source>
<translation> </translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1710"/>
<location filename="mainwindow.cpp" line="1709"/>
<source>No project file loaded</source>
<translation> </translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1779"/>
<location filename="mainwindow.cpp" line="1778"/>
<source>The project file
%1
@ -1042,54 +1042,54 @@ Do you want to remove the file from the recently used projects -list?</source>
<translation type="obsolete">C++03</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="817"/>
<location filename="mainwindow.cpp" line="816"/>
<source>File not found</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="820"/>
<location filename="mainwindow.cpp" line="819"/>
<source>Bad XML</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="823"/>
<location filename="mainwindow.cpp" line="822"/>
<source>Missing attribute</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="826"/>
<location filename="mainwindow.cpp" line="825"/>
<source>Bad attribute value</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Failed to load the selected library &apos;%1&apos;.
%2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="829"/>
<location filename="mainwindow.cpp" line="828"/>
<source>Unsupported format</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="807"/>
<source>The library &apos;%1&apos; contains unknown elements:
%2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="832"/>
<location filename="mainwindow.cpp" line="831"/>
<source>Duplicate platform type</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="835"/>
<location filename="mainwindow.cpp" line="834"/>
<source>Platform type redefined</source>
<translation type="unfinished"></translation>
</message>
@ -1119,12 +1119,12 @@ Do you want to remove the file from the recently used projects -list?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="838"/>
<location filename="mainwindow.cpp" line="837"/>
<source>Unknown element</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="841"/>
<location filename="mainwindow.cpp" line="840"/>
<source>Unknown issue</source>
<translation type="unfinished"></translation>
</message>
@ -1152,12 +1152,12 @@ Options:
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Failed to load %1. Your Cppcheck installation is broken. You can use --data-dir=&lt;directory&gt; at the command line to specify where this file is located. Please note that --data-dir is supposed to be used by installation scripts and therefore the GUI does not start when it is used, all that happens is that the setting is configured.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1602"/>
<location filename="mainwindow.cpp" line="1601"/>
<source>Build dir &apos;%1&apos; does not exist, create it?</source>
<translation type="unfinished"></translation>
</message>
@ -1185,7 +1185,7 @@ Options:
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1389"/>
<location filename="mainwindow.cpp" line="1388"/>
<source>XML files (*.xml);;Text files (*.txt);;CSV files (*.csv)</source>
<translation type="unfinished"></translation>
</message>
@ -1217,7 +1217,7 @@ Do you want to proceed analysis without using any of these project files?</sourc
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1323"/>
<location filename="mainwindow.cpp" line="1322"/>
<source>Analyzer is running.
Do you want to stop the analysis and exit Cppcheck?</source>
@ -1364,12 +1364,12 @@ Do you want to stop the analysis and exit Cppcheck?</source>
<translation type="unfinished">C++14</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1633"/>
<location filename="mainwindow.cpp" line="1632"/>
<source>Failed to import &apos;%1&apos;, analysis is stopped</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1657"/>
<location filename="mainwindow.cpp" line="1656"/>
<source>Project files (*.cppcheck)</source>
<translation type="unfinished"></translation>
</message>
@ -1414,7 +1414,7 @@ Do you want to stop the analysis and exit Cppcheck?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1203"/>
<location filename="mainwindow.cpp" line="1202"/>
<source>Current results will be cleared.
Opening a new XML file will clear current results.
@ -2124,22 +2124,22 @@ Do you want to proceed?</source>
<context>
<name>ResultsTree</name>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>File</source>
<translation></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Severity</source>
<translation></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Line</source>
<translation></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Summary</source>
<translation></translation>
</message>
@ -2256,7 +2256,7 @@ Please select the directory where file is located.</source>
<translation> </translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Id</source>
<translation type="unfinished"></translation>
</message>
@ -2271,7 +2271,7 @@ Please select the directory where file is located.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Inconclusive</source>
<translation type="unfinished"></translation>
</message>
@ -2302,7 +2302,7 @@ Please select the directory where file is located.</source>
</message>
<message>
<location filename="resultstree.cpp" line="701"/>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Tag</source>
<translation type="unfinished"></translation>
</message>
@ -2312,7 +2312,7 @@ Please select the directory where file is located.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Since date</source>
<translation type="unfinished"></translation>
</message>
@ -2389,7 +2389,7 @@ To toggle what kind of errors are shown, open view menu.</source>
<translation> .</translation>
</message>
<message>
<location filename="resultsview.cpp" line="462"/>
<location filename="resultsview.cpp" line="461"/>
<source>Bug hunting analysis is incomplete</source>
<translation type="unfinished"></translation>
</message>
@ -2402,7 +2402,7 @@ To toggle what kind of errors are shown, open view menu.</source>
<translation type="obsolete"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="460"/>
<location filename="resultsview.cpp" line="459"/>
<source>Id</source>
<translation type="unfinished"></translation>
</message>
@ -2417,7 +2417,7 @@ To toggle what kind of errors are shown, open view menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="455"/>
<location filename="resultsview.cpp" line="454"/>
<source>First included by</source>
<translation type="unfinished"></translation>
</message>
@ -2464,17 +2464,17 @@ To toggle what kind of errors are shown, open view menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="575"/>
<location filename="resultsview.cpp" line="574"/>
<source>Clear Log</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="576"/>
<location filename="resultsview.cpp" line="575"/>
<source>Copy this Log entry</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="577"/>
<location filename="resultsview.cpp" line="576"/>
<source>Copy complete Log</source>
<translation type="unfinished"></translation>
</message>
@ -2730,22 +2730,22 @@ To toggle what kind of errors are shown, open view menu.</source>
<translation>N/A</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="220"/>
<location filename="settingsdialog.cpp" line="219"/>
<source>The executable file &quot;%1&quot; is not available</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="231"/>
<location filename="settingsdialog.cpp" line="230"/>
<source>Add a new application</source>
<translation> </translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="264"/>
<location filename="settingsdialog.cpp" line="260"/>
<source>Modify an application</source>
<translation> </translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="294"/>
<location filename="settingsdialog.cpp" line="290"/>
<source>[Default]</source>
<translation>[]</translation>
</message>
@ -2754,22 +2754,22 @@ To toggle what kind of errors are shown, open view menu.</source>
<translation type="obsolete">Include </translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="269"/>
<location filename="settingsdialog.cpp" line="265"/>
<source> [Default]</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="349"/>
<location filename="settingsdialog.cpp" line="345"/>
<source>Select python binary</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="387"/>
<location filename="settingsdialog.cpp" line="383"/>
<source>Select clang path</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="356"/>
<location filename="settingsdialog.cpp" line="352"/>
<source>Select MISRA File</source>
<translation type="unfinished"></translation>
</message>

View File

@ -487,13 +487,13 @@ Parameters: -l(lijn) (bestand)</translation>
<location filename="mainwindow.cpp" line="565"/>
<location filename="mainwindow.cpp" line="697"/>
<location filename="mainwindow.cpp" line="719"/>
<location filename="mainwindow.cpp" line="1202"/>
<location filename="mainwindow.cpp" line="1327"/>
<location filename="mainwindow.cpp" line="1601"/>
<location filename="mainwindow.cpp" line="1609"/>
<location filename="mainwindow.cpp" line="1632"/>
<location filename="mainwindow.cpp" line="1709"/>
<location filename="mainwindow.cpp" line="1784"/>
<location filename="mainwindow.cpp" line="1201"/>
<location filename="mainwindow.cpp" line="1326"/>
<location filename="mainwindow.cpp" line="1600"/>
<location filename="mainwindow.cpp" line="1608"/>
<location filename="mainwindow.cpp" line="1631"/>
<location filename="mainwindow.cpp" line="1708"/>
<location filename="mainwindow.cpp" line="1783"/>
<source>Cppcheck</source>
<translation>Cppcheck</translation>
</message>
@ -682,8 +682,8 @@ Parameters: -l(lijn) (bestand)</translation>
<translation>Toon &amp;verborgen</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="807"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Information</source>
<translation>Informatie</translation>
</message>
@ -1052,7 +1052,7 @@ Parameters: -l(lijn) (bestand)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="86"/>
<location filename="mainwindow.cpp" line="1470"/>
<location filename="mainwindow.cpp" line="1469"/>
<source>Quick Filter:</source>
<translation>Snel Filter:</translation>
</message>
@ -1077,38 +1077,38 @@ Do you want to proceed checking without using any of these project files?</sourc
Wil je verder wilt gaan zonder controle van deze project bestanden?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="817"/>
<location filename="mainwindow.cpp" line="816"/>
<source>File not found</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="820"/>
<location filename="mainwindow.cpp" line="819"/>
<source>Bad XML</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="823"/>
<location filename="mainwindow.cpp" line="822"/>
<source>Missing attribute</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="826"/>
<location filename="mainwindow.cpp" line="825"/>
<source>Bad attribute value</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Failed to load the selected library &apos;%1&apos;.
%2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1369"/>
<location filename="mainwindow.cpp" line="1368"/>
<source>License</source>
<translation>Licentie</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1376"/>
<location filename="mainwindow.cpp" line="1375"/>
<source>Authors</source>
<translation>Auteurs</translation>
</message>
@ -1118,13 +1118,13 @@ Wil je verder wilt gaan zonder controle van deze project bestanden?</translation
<translation type="obsolete">XML bestanden (*.xml);;Tekst bestanden (*.txt);;CSV bestanden (*.csv)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1391"/>
<location filename="mainwindow.cpp" line="1390"/>
<source>Save the report file</source>
<translation>Rapport opslaan </translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1218"/>
<location filename="mainwindow.cpp" line="1398"/>
<location filename="mainwindow.cpp" line="1217"/>
<location filename="mainwindow.cpp" line="1397"/>
<source>XML files (*.xml)</source>
<translation>XML bestanden (*.xml)</translation>
</message>
@ -1147,43 +1147,43 @@ Dit is waarschijnlijk omdat de instellingen zijn gewijzigd tussen de versies van
<translation type="obsolete">Selecteer bestanden om te controleren</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="807"/>
<source>The library &apos;%1&apos; contains unknown elements:
%2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="829"/>
<location filename="mainwindow.cpp" line="828"/>
<source>Unsupported format</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="832"/>
<location filename="mainwindow.cpp" line="831"/>
<source>Duplicate platform type</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="835"/>
<location filename="mainwindow.cpp" line="834"/>
<source>Platform type redefined</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="838"/>
<location filename="mainwindow.cpp" line="837"/>
<source>Unknown element</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="841"/>
<location filename="mainwindow.cpp" line="840"/>
<source>Unknown issue</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Failed to load %1. Your Cppcheck installation is broken. You can use --data-dir=&lt;directory&gt; at the command line to specify where this file is located. Please note that --data-dir is supposed to be used by installation scripts and therefore the GUI does not start when it is used, all that happens is that the setting is configured.</source>
<translation type="unfinished"></translation>
</message>
@ -1196,7 +1196,7 @@ Opening a new XML file will clear current results.Do you want to proceed?</sourc
Een nieuw XML-bestand openen zal de huidige resultaten wissen Wilt u verder gaan?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1220"/>
<location filename="mainwindow.cpp" line="1219"/>
<source>Open the report file</source>
<translation>Open het rapport bestand</translation>
</message>
@ -1217,12 +1217,12 @@ Wil je het controleren stoppen en Cppcheck sluiten?</translation>
<translation type="obsolete">XML files version 2 (*.xml)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1402"/>
<location filename="mainwindow.cpp" line="1401"/>
<source>Text files (*.txt)</source>
<translation>Tekst bestanden (*.txt)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1406"/>
<location filename="mainwindow.cpp" line="1405"/>
<source>CSV files (*.csv)</source>
<translation>CSV bestanden (*.csv)</translation>
</message>
@ -1231,20 +1231,20 @@ Wil je het controleren stoppen en Cppcheck sluiten?</translation>
<translation type="vanished">Cppcheck - %1</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1508"/>
<location filename="mainwindow.cpp" line="1507"/>
<source>Project files (*.cppcheck);;All files(*.*)</source>
<translation>Project bestanden (*.cppcheck);;Alle bestanden(*.*)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1510"/>
<location filename="mainwindow.cpp" line="1509"/>
<source>Select Project File</source>
<translation>Selecteer project bestand</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="162"/>
<location filename="mainwindow.cpp" line="1472"/>
<location filename="mainwindow.cpp" line="1538"/>
<location filename="mainwindow.cpp" line="1672"/>
<location filename="mainwindow.cpp" line="1471"/>
<location filename="mainwindow.cpp" line="1537"/>
<location filename="mainwindow.cpp" line="1671"/>
<source>Project:</source>
<translation>Project:</translation>
</message>
@ -1296,7 +1296,7 @@ Do you want to proceed analysis without using any of these project files?</sourc
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1203"/>
<location filename="mainwindow.cpp" line="1202"/>
<source>Current results will be cleared.
Opening a new XML file will clear current results.
@ -1304,49 +1304,49 @@ Do you want to proceed?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1323"/>
<location filename="mainwindow.cpp" line="1322"/>
<source>Analyzer is running.
Do you want to stop the analysis and exit Cppcheck?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1389"/>
<location filename="mainwindow.cpp" line="1388"/>
<source>XML files (*.xml);;Text files (*.txt);;CSV files (*.csv)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1602"/>
<location filename="mainwindow.cpp" line="1601"/>
<source>Build dir &apos;%1&apos; does not exist, create it?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1610"/>
<location filename="mainwindow.cpp" line="1609"/>
<source>To check the project using addons, you need a build directory.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1633"/>
<location filename="mainwindow.cpp" line="1632"/>
<source>Failed to import &apos;%1&apos;, analysis is stopped</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1657"/>
<location filename="mainwindow.cpp" line="1656"/>
<source>Project files (*.cppcheck)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1659"/>
<location filename="mainwindow.cpp" line="1658"/>
<source>Select Project Filename</source>
<translation>Selecteer project bestandsnaam</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1710"/>
<location filename="mainwindow.cpp" line="1709"/>
<source>No project file loaded</source>
<translation>Geen project bestand geladen</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1779"/>
<location filename="mainwindow.cpp" line="1778"/>
<source>The project file
%1
@ -2136,22 +2136,22 @@ Options:
<context>
<name>ResultsTree</name>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>File</source>
<translation>Bestand</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Severity</source>
<translation>Ernst</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Line</source>
<translation>Regel</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Summary</source>
<translation>Overzicht</translation>
</message>
@ -2252,7 +2252,7 @@ Options:
</message>
<message>
<location filename="resultstree.cpp" line="701"/>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Tag</source>
<translation type="unfinished"></translation>
</message>
@ -2312,17 +2312,17 @@ Selecteer de map waarin het bestand zich bevindt.</translation>
<translation>Selecteer map</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Id</source>
<translation>Id</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Inconclusive</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Since date</source>
<translation type="unfinished"></translation>
</message>
@ -2412,32 +2412,32 @@ Gebruik het uitzicht menu om te selecteren welke fouten getoond worden.</transla
<translation type="obsolete">Bericht</translation>
</message>
<message>
<location filename="resultsview.cpp" line="455"/>
<location filename="resultsview.cpp" line="454"/>
<source>First included by</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="460"/>
<location filename="resultsview.cpp" line="459"/>
<source>Id</source>
<translation>Id</translation>
</message>
<message>
<location filename="resultsview.cpp" line="462"/>
<location filename="resultsview.cpp" line="461"/>
<source>Bug hunting analysis is incomplete</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="575"/>
<location filename="resultsview.cpp" line="574"/>
<source>Clear Log</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="576"/>
<location filename="resultsview.cpp" line="575"/>
<source>Copy this Log entry</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="577"/>
<location filename="resultsview.cpp" line="576"/>
<source>Copy complete Log</source>
<translation type="unfinished"></translation>
</message>
@ -2746,42 +2746,42 @@ Gebruik het uitzicht menu om te selecteren welke fouten getoond worden.</transla
<translation></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="220"/>
<location filename="settingsdialog.cpp" line="219"/>
<source>The executable file &quot;%1&quot; is not available</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="231"/>
<location filename="settingsdialog.cpp" line="230"/>
<source>Add a new application</source>
<translation>Nieuwe applicatie toevoegen</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="264"/>
<location filename="settingsdialog.cpp" line="260"/>
<source>Modify an application</source>
<translation>Applicatie wijzigen</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="269"/>
<location filename="settingsdialog.cpp" line="265"/>
<source> [Default]</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="294"/>
<location filename="settingsdialog.cpp" line="290"/>
<source>[Default]</source>
<translation>[Standaard]</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="349"/>
<location filename="settingsdialog.cpp" line="345"/>
<source>Select python binary</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="356"/>
<location filename="settingsdialog.cpp" line="352"/>
<source>Select MISRA File</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="387"/>
<location filename="settingsdialog.cpp" line="383"/>
<source>Select clang path</source>
<translation type="unfinished"></translation>
</message>

View File

@ -492,13 +492,13 @@ Parameters: -l(line) (file)</source>
<location filename="mainwindow.cpp" line="565"/>
<location filename="mainwindow.cpp" line="697"/>
<location filename="mainwindow.cpp" line="719"/>
<location filename="mainwindow.cpp" line="1202"/>
<location filename="mainwindow.cpp" line="1327"/>
<location filename="mainwindow.cpp" line="1601"/>
<location filename="mainwindow.cpp" line="1609"/>
<location filename="mainwindow.cpp" line="1632"/>
<location filename="mainwindow.cpp" line="1709"/>
<location filename="mainwindow.cpp" line="1784"/>
<location filename="mainwindow.cpp" line="1201"/>
<location filename="mainwindow.cpp" line="1326"/>
<location filename="mainwindow.cpp" line="1600"/>
<location filename="mainwindow.cpp" line="1608"/>
<location filename="mainwindow.cpp" line="1631"/>
<location filename="mainwindow.cpp" line="1708"/>
<location filename="mainwindow.cpp" line="1783"/>
<source>Cppcheck</source>
<translation>Cppcheck</translation>
</message>
@ -692,8 +692,8 @@ Parameters: -l(line) (file)</source>
<translation>Показать скрытые</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="807"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Information</source>
<translation>Информационные сообщения</translation>
</message>
@ -1106,7 +1106,7 @@ Parameters: -l(line) (file)</source>
</message>
<message>
<location filename="mainwindow.cpp" line="86"/>
<location filename="mainwindow.cpp" line="1470"/>
<location filename="mainwindow.cpp" line="1469"/>
<source>Quick Filter:</source>
<translation>Быстрый фильтр:</translation>
</message>
@ -1132,32 +1132,32 @@ Do you want to proceed checking without using any of these project files?</sourc
Вы хотите продолжить проверку, не используя ни одного из этих файлов проекта?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="817"/>
<location filename="mainwindow.cpp" line="816"/>
<source>File not found</source>
<translation>Файл не найден</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="820"/>
<location filename="mainwindow.cpp" line="819"/>
<source>Bad XML</source>
<translation>Некорректный XML</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="823"/>
<location filename="mainwindow.cpp" line="822"/>
<source>Missing attribute</source>
<translation>Пропущен атрибут</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="826"/>
<location filename="mainwindow.cpp" line="825"/>
<source>Bad attribute value</source>
<translation>Некорректное значение атрибута</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="829"/>
<location filename="mainwindow.cpp" line="828"/>
<source>Unsupported format</source>
<translation>Неподдерживаемый формат</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Failed to load the selected library &apos;%1&apos;.
%2</source>
<translation>Не удалось загрузить выбранную библиотеку &apos;%1&apos;.
@ -1168,12 +1168,12 @@ Do you want to proceed checking without using any of these project files?</sourc
<translation type="obsolete">Не удалось загрузить %1. Установленный Cppcheck поврежден. Вы можете использовать ключ --data-dir=&lt;directory&gt; в командной строке, чтобы указать, где расположен этот файл.</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1369"/>
<location filename="mainwindow.cpp" line="1368"/>
<source>License</source>
<translation>Лицензия</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1376"/>
<location filename="mainwindow.cpp" line="1375"/>
<source>Authors</source>
<translation>Авторы</translation>
</message>
@ -1183,13 +1183,13 @@ Do you want to proceed checking without using any of these project files?</sourc
<translation type="obsolete">XML файлы версии 2 (*.xml);;XML файлы версии 1 (*.xml);;Текстовые файлы (*.txt);;CSV файлы (*.csv)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1391"/>
<location filename="mainwindow.cpp" line="1390"/>
<source>Save the report file</source>
<translation>Сохранить файл с отчетом</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1218"/>
<location filename="mainwindow.cpp" line="1398"/>
<location filename="mainwindow.cpp" line="1217"/>
<location filename="mainwindow.cpp" line="1397"/>
<source>XML files (*.xml)</source>
<translation>XML-файлы (*.xml)</translation>
</message>
@ -1212,39 +1212,39 @@ This is probably because the settings were changed between the Cppcheck versions
<translation type="obsolete">Выберите файлы для проверки</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="807"/>
<source>The library &apos;%1&apos; contains unknown elements:
%2</source>
<translation>Библиотека &apos;%1&apos; содержит неизвестные элементы:
%2</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="832"/>
<location filename="mainwindow.cpp" line="831"/>
<source>Duplicate platform type</source>
<translation>Дубликат типа платформы</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="835"/>
<location filename="mainwindow.cpp" line="834"/>
<source>Platform type redefined</source>
<translation>Переобъявление типа платформы</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="838"/>
<location filename="mainwindow.cpp" line="837"/>
<source>Unknown element</source>
<translation>Неизвестный элемент</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="841"/>
<location filename="mainwindow.cpp" line="840"/>
<source>Unknown issue</source>
<translation>Неизвестная проблема</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Error</source>
<translation>Ошибка</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Failed to load %1. Your Cppcheck installation is broken. You can use --data-dir=&lt;directory&gt; at the command line to specify where this file is located. Please note that --data-dir is supposed to be used by installation scripts and therefore the GUI does not start when it is used, all that happens is that the setting is configured.</source>
<translation>Невозможно загрузить %1. Cppcheck установлен некорректно. Вы можете использовать --data-dir=&lt;directory&gt; в командной строке для указания расположения файлов конфигурации. Обратите внимание, что --data-dir предназначен для использования сценариями установки. При включении данной опции, графический интерфейс пользователя не запускается.</translation>
</message>
@ -1257,7 +1257,7 @@ Opening a new XML file will clear current results.Do you want to proceed?</sourc
Открытые нового XML файла приведет к очистке текущих результатов. Продолжить?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1220"/>
<location filename="mainwindow.cpp" line="1219"/>
<source>Open the report file</source>
<translation>Открыть файл с отчетом</translation>
</message>
@ -1278,12 +1278,12 @@ Do you want to stop the checking and exit Cppcheck?</source>
<translation type="obsolete">XML файлы версии 2 (*.xml)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1402"/>
<location filename="mainwindow.cpp" line="1401"/>
<source>Text files (*.txt)</source>
<translation>Текстовые файлы (*.txt)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1406"/>
<location filename="mainwindow.cpp" line="1405"/>
<source>CSV files (*.csv)</source>
<translation>CSV файлы(*.csv)</translation>
</message>
@ -1304,20 +1304,20 @@ The user interface language has been reset to English. Open the Preferences-dial
The user interface language has been reset to English. Open the Preferences-dialog to select any of the available languages.</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1508"/>
<location filename="mainwindow.cpp" line="1507"/>
<source>Project files (*.cppcheck);;All files(*.*)</source>
<translation>Файлы проекта (*.cppcheck);;Все файлы(*.*)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1510"/>
<location filename="mainwindow.cpp" line="1509"/>
<source>Select Project File</source>
<translation>Выберите файл проекта</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="162"/>
<location filename="mainwindow.cpp" line="1472"/>
<location filename="mainwindow.cpp" line="1538"/>
<location filename="mainwindow.cpp" line="1672"/>
<location filename="mainwindow.cpp" line="1471"/>
<location filename="mainwindow.cpp" line="1537"/>
<location filename="mainwindow.cpp" line="1671"/>
<source>Project:</source>
<translation>Проект:</translation>
</message>
@ -1371,7 +1371,7 @@ Do you want to proceed analysis without using any of these project files?</sourc
Вы хотите продолжить анализ без использования этих файлов проекта?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1203"/>
<location filename="mainwindow.cpp" line="1202"/>
<source>Current results will be cleared.
Opening a new XML file will clear current results.
@ -1382,7 +1382,7 @@ Do you want to proceed?</source>
Вы хотите продолжить?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1323"/>
<location filename="mainwindow.cpp" line="1322"/>
<source>Analyzer is running.
Do you want to stop the analysis and exit Cppcheck?</source>
@ -1391,42 +1391,42 @@ Do you want to stop the analysis and exit Cppcheck?</source>
Вы хотите остановить анализ и выйти из Cppcheck?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1389"/>
<location filename="mainwindow.cpp" line="1388"/>
<source>XML files (*.xml);;Text files (*.txt);;CSV files (*.csv)</source>
<translation>XML файлы (*.xml);;Текстовые файлы (*.txt);;CSV файлы (*.csv)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1602"/>
<location filename="mainwindow.cpp" line="1601"/>
<source>Build dir &apos;%1&apos; does not exist, create it?</source>
<translation>Директория для сборки &apos;%1&apos; не существует, создать?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1610"/>
<location filename="mainwindow.cpp" line="1609"/>
<source>To check the project using addons, you need a build directory.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1633"/>
<location filename="mainwindow.cpp" line="1632"/>
<source>Failed to import &apos;%1&apos;, analysis is stopped</source>
<translation>Невозможно импортировать &apos;%1&apos;, анализ остановлен</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1657"/>
<location filename="mainwindow.cpp" line="1656"/>
<source>Project files (*.cppcheck)</source>
<translation>Файлы проекта (*.cppcheck)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1659"/>
<location filename="mainwindow.cpp" line="1658"/>
<source>Select Project Filename</source>
<translation>Выберите имя файла для проекта</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1710"/>
<location filename="mainwindow.cpp" line="1709"/>
<source>No project file loaded</source>
<translation>Файл с проектом не загружен</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1779"/>
<location filename="mainwindow.cpp" line="1778"/>
<source>The project file
%1
@ -2258,22 +2258,22 @@ Options:
<context>
<name>ResultsTree</name>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>File</source>
<translation>Файл</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Severity</source>
<translation>Важность</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Line</source>
<translation>Строка</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Summary</source>
<translation>Кратко</translation>
</message>
@ -2374,7 +2374,7 @@ Options:
</message>
<message>
<location filename="resultstree.cpp" line="701"/>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Tag</source>
<translation>Тег</translation>
</message>
@ -2433,17 +2433,17 @@ Please select the directory where file is located.</source>
<translation>Выберите директорию</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Id</source>
<translation>Id</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Inconclusive</source>
<translation>Спорное</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Since date</source>
<translation>Начиная с даты</translation>
</message>
@ -2533,32 +2533,32 @@ To toggle what kind of errors are shown, open view menu.</source>
<translation type="obsolete">Сообщение</translation>
</message>
<message>
<location filename="resultsview.cpp" line="455"/>
<location filename="resultsview.cpp" line="454"/>
<source>First included by</source>
<translation>Только первый включенный</translation>
</message>
<message>
<location filename="resultsview.cpp" line="460"/>
<location filename="resultsview.cpp" line="459"/>
<source>Id</source>
<translation>Id</translation>
</message>
<message>
<location filename="resultsview.cpp" line="462"/>
<location filename="resultsview.cpp" line="461"/>
<source>Bug hunting analysis is incomplete</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="575"/>
<location filename="resultsview.cpp" line="574"/>
<source>Clear Log</source>
<translation>Очистить лог</translation>
</message>
<message>
<location filename="resultsview.cpp" line="576"/>
<location filename="resultsview.cpp" line="575"/>
<source>Copy this Log entry</source>
<translation>Скопировать данную запись</translation>
</message>
<message>
<location filename="resultsview.cpp" line="577"/>
<location filename="resultsview.cpp" line="576"/>
<source>Copy complete Log</source>
<translation>Скопировать полный лог</translation>
</message>
@ -2867,42 +2867,42 @@ To toggle what kind of errors are shown, open view menu.</source>
<translation>Нет данных</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="220"/>
<location filename="settingsdialog.cpp" line="219"/>
<source>The executable file &quot;%1&quot; is not available</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="231"/>
<location filename="settingsdialog.cpp" line="230"/>
<source>Add a new application</source>
<translation>Добавить новое приложение</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="264"/>
<location filename="settingsdialog.cpp" line="260"/>
<source>Modify an application</source>
<translation>Изменить приложение</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="269"/>
<location filename="settingsdialog.cpp" line="265"/>
<source> [Default]</source>
<translation> [По умолчанию]</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="294"/>
<location filename="settingsdialog.cpp" line="290"/>
<source>[Default]</source>
<translation>[По умолчанию]</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="349"/>
<location filename="settingsdialog.cpp" line="345"/>
<source>Select python binary</source>
<translation>Выберите исполняемый файл python</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="356"/>
<location filename="settingsdialog.cpp" line="352"/>
<source>Select MISRA File</source>
<translation>Выберите файл текстов правил MISRA</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="387"/>
<location filename="settingsdialog.cpp" line="383"/>
<source>Select clang path</source>
<translation>Выберите исполняемый файл clang</translation>
</message>

View File

@ -455,13 +455,13 @@ Parameters: -l(line) (file)</source>
<location filename="mainwindow.cpp" line="565"/>
<location filename="mainwindow.cpp" line="697"/>
<location filename="mainwindow.cpp" line="719"/>
<location filename="mainwindow.cpp" line="1202"/>
<location filename="mainwindow.cpp" line="1327"/>
<location filename="mainwindow.cpp" line="1601"/>
<location filename="mainwindow.cpp" line="1609"/>
<location filename="mainwindow.cpp" line="1632"/>
<location filename="mainwindow.cpp" line="1709"/>
<location filename="mainwindow.cpp" line="1784"/>
<location filename="mainwindow.cpp" line="1201"/>
<location filename="mainwindow.cpp" line="1326"/>
<location filename="mainwindow.cpp" line="1600"/>
<location filename="mainwindow.cpp" line="1608"/>
<location filename="mainwindow.cpp" line="1631"/>
<location filename="mainwindow.cpp" line="1708"/>
<location filename="mainwindow.cpp" line="1783"/>
<source>Cppcheck</source>
<translation>Cppcheck</translation>
</message>
@ -634,8 +634,8 @@ Parameters: -l(line) (file)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="807"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Information</source>
<translation type="unfinished"></translation>
</message>
@ -1024,7 +1024,7 @@ Parameters: -l(line) (file)</source>
</message>
<message>
<location filename="mainwindow.cpp" line="86"/>
<location filename="mainwindow.cpp" line="1470"/>
<location filename="mainwindow.cpp" line="1469"/>
<source>Quick Filter:</source>
<translation type="unfinished"></translation>
</message>
@ -1041,38 +1041,38 @@ Do you want to load this project file instead?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="817"/>
<location filename="mainwindow.cpp" line="816"/>
<source>File not found</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="820"/>
<location filename="mainwindow.cpp" line="819"/>
<source>Bad XML</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="823"/>
<location filename="mainwindow.cpp" line="822"/>
<source>Missing attribute</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="826"/>
<location filename="mainwindow.cpp" line="825"/>
<source>Bad attribute value</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Failed to load the selected library &apos;%1&apos;.
%2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1369"/>
<location filename="mainwindow.cpp" line="1368"/>
<source>License</source>
<translation type="unfinished">License</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1376"/>
<location filename="mainwindow.cpp" line="1375"/>
<source>Authors</source>
<translation type="unfinished">Authors</translation>
</message>
@ -1081,13 +1081,13 @@ Do you want to load this project file instead?</source>
<translation type="obsolete">XML files (*.xml);;Text files (*.txt);;CSV files (*.csv)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1391"/>
<location filename="mainwindow.cpp" line="1390"/>
<source>Save the report file</source>
<translation type="unfinished">Save the report file</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1218"/>
<location filename="mainwindow.cpp" line="1398"/>
<location filename="mainwindow.cpp" line="1217"/>
<location filename="mainwindow.cpp" line="1397"/>
<source>XML files (*.xml)</source>
<translation type="unfinished">XML files (*.xml)</translation>
</message>
@ -1108,58 +1108,58 @@ This is probably because the settings were changed between the Cppcheck versions
<translation type="obsolete">Select files to check</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="807"/>
<source>The library &apos;%1&apos; contains unknown elements:
%2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="829"/>
<location filename="mainwindow.cpp" line="828"/>
<source>Unsupported format</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="832"/>
<location filename="mainwindow.cpp" line="831"/>
<source>Duplicate platform type</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="835"/>
<location filename="mainwindow.cpp" line="834"/>
<source>Platform type redefined</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="838"/>
<location filename="mainwindow.cpp" line="837"/>
<source>Unknown element</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="841"/>
<location filename="mainwindow.cpp" line="840"/>
<source>Unknown issue</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Failed to load %1. Your Cppcheck installation is broken. You can use --data-dir=&lt;directory&gt; at the command line to specify where this file is located. Please note that --data-dir is supposed to be used by installation scripts and therefore the GUI does not start when it is used, all that happens is that the setting is configured.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1220"/>
<location filename="mainwindow.cpp" line="1219"/>
<source>Open the report file</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1402"/>
<location filename="mainwindow.cpp" line="1401"/>
<source>Text files (*.txt)</source>
<translation type="unfinished">Text files (*.txt)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1406"/>
<location filename="mainwindow.cpp" line="1405"/>
<source>CSV files (*.csv)</source>
<translation type="unfinished"></translation>
</message>
@ -1168,20 +1168,20 @@ This is probably because the settings were changed between the Cppcheck versions
<translation type="vanished">Cppcheck - %1</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1508"/>
<location filename="mainwindow.cpp" line="1507"/>
<source>Project files (*.cppcheck);;All files(*.*)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1510"/>
<location filename="mainwindow.cpp" line="1509"/>
<source>Select Project File</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="162"/>
<location filename="mainwindow.cpp" line="1472"/>
<location filename="mainwindow.cpp" line="1538"/>
<location filename="mainwindow.cpp" line="1672"/>
<location filename="mainwindow.cpp" line="1471"/>
<location filename="mainwindow.cpp" line="1537"/>
<location filename="mainwindow.cpp" line="1671"/>
<source>Project:</source>
<translation type="unfinished"></translation>
</message>
@ -1233,7 +1233,7 @@ Do you want to proceed analysis without using any of these project files?</sourc
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1203"/>
<location filename="mainwindow.cpp" line="1202"/>
<source>Current results will be cleared.
Opening a new XML file will clear current results.
@ -1241,49 +1241,49 @@ Do you want to proceed?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1323"/>
<location filename="mainwindow.cpp" line="1322"/>
<source>Analyzer is running.
Do you want to stop the analysis and exit Cppcheck?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1389"/>
<location filename="mainwindow.cpp" line="1388"/>
<source>XML files (*.xml);;Text files (*.txt);;CSV files (*.csv)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1602"/>
<location filename="mainwindow.cpp" line="1601"/>
<source>Build dir &apos;%1&apos; does not exist, create it?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1610"/>
<location filename="mainwindow.cpp" line="1609"/>
<source>To check the project using addons, you need a build directory.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1633"/>
<location filename="mainwindow.cpp" line="1632"/>
<source>Failed to import &apos;%1&apos;, analysis is stopped</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1657"/>
<location filename="mainwindow.cpp" line="1656"/>
<source>Project files (*.cppcheck)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1659"/>
<location filename="mainwindow.cpp" line="1658"/>
<source>Select Project Filename</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1710"/>
<location filename="mainwindow.cpp" line="1709"/>
<source>No project file loaded</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1779"/>
<location filename="mainwindow.cpp" line="1778"/>
<source>The project file
%1
@ -1995,22 +1995,22 @@ Options:
<context>
<name>ResultsTree</name>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>File</source>
<translation type="unfinished">File</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Severity</source>
<translation type="unfinished">Severity</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Line</source>
<translation type="unfinished">Line</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Summary</source>
<translation type="unfinished"></translation>
</message>
@ -2099,7 +2099,7 @@ Options:
</message>
<message>
<location filename="resultstree.cpp" line="701"/>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Tag</source>
<translation type="unfinished"></translation>
</message>
@ -2148,17 +2148,17 @@ Please check the application path and parameters are correct.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Id</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Inconclusive</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Since date</source>
<translation type="unfinished"></translation>
</message>
@ -2240,32 +2240,32 @@ To toggle what kind of errors are shown, open view menu.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="455"/>
<location filename="resultsview.cpp" line="454"/>
<source>First included by</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="460"/>
<location filename="resultsview.cpp" line="459"/>
<source>Id</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="462"/>
<location filename="resultsview.cpp" line="461"/>
<source>Bug hunting analysis is incomplete</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="575"/>
<location filename="resultsview.cpp" line="574"/>
<source>Clear Log</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="576"/>
<location filename="resultsview.cpp" line="575"/>
<source>Copy this Log entry</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="577"/>
<location filename="resultsview.cpp" line="576"/>
<source>Copy complete Log</source>
<translation type="unfinished"></translation>
</message>
@ -2549,42 +2549,42 @@ To toggle what kind of errors are shown, open view menu.</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="220"/>
<location filename="settingsdialog.cpp" line="219"/>
<source>The executable file &quot;%1&quot; is not available</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="231"/>
<location filename="settingsdialog.cpp" line="230"/>
<source>Add a new application</source>
<translation type="unfinished">Add a new application</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="264"/>
<location filename="settingsdialog.cpp" line="260"/>
<source>Modify an application</source>
<translation type="unfinished">Modify an application</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="269"/>
<location filename="settingsdialog.cpp" line="265"/>
<source> [Default]</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="294"/>
<location filename="settingsdialog.cpp" line="290"/>
<source>[Default]</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="349"/>
<location filename="settingsdialog.cpp" line="345"/>
<source>Select python binary</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="356"/>
<location filename="settingsdialog.cpp" line="352"/>
<source>Select MISRA File</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="387"/>
<location filename="settingsdialog.cpp" line="383"/>
<source>Select clang path</source>
<translation type="unfinished"></translation>
</message>

View File

@ -509,13 +509,13 @@ Exempel:
<location filename="mainwindow.cpp" line="565"/>
<location filename="mainwindow.cpp" line="697"/>
<location filename="mainwindow.cpp" line="719"/>
<location filename="mainwindow.cpp" line="1202"/>
<location filename="mainwindow.cpp" line="1327"/>
<location filename="mainwindow.cpp" line="1601"/>
<location filename="mainwindow.cpp" line="1609"/>
<location filename="mainwindow.cpp" line="1632"/>
<location filename="mainwindow.cpp" line="1709"/>
<location filename="mainwindow.cpp" line="1784"/>
<location filename="mainwindow.cpp" line="1201"/>
<location filename="mainwindow.cpp" line="1326"/>
<location filename="mainwindow.cpp" line="1600"/>
<location filename="mainwindow.cpp" line="1608"/>
<location filename="mainwindow.cpp" line="1631"/>
<location filename="mainwindow.cpp" line="1708"/>
<location filename="mainwindow.cpp" line="1783"/>
<source>Cppcheck</source>
<translation>Cppcheck</translation>
</message>
@ -709,8 +709,8 @@ Exempel:
<translation>Visa dolda</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="807"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Information</source>
<translation>Information</translation>
</message>
@ -1124,7 +1124,7 @@ Exempel:
</message>
<message>
<location filename="mainwindow.cpp" line="86"/>
<location filename="mainwindow.cpp" line="1470"/>
<location filename="mainwindow.cpp" line="1469"/>
<source>Quick Filter:</source>
<translation>Snabbfilter:</translation>
</message>
@ -1159,44 +1159,44 @@ Do you want to proceed checking without using any of these project files?</sourc
Vill du fortsätta analysen utan att använda någon av dessa projektfiler?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="817"/>
<location filename="mainwindow.cpp" line="816"/>
<source>File not found</source>
<translation>Filen hittades ej</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="820"/>
<location filename="mainwindow.cpp" line="819"/>
<source>Bad XML</source>
<translation>Ogiltig XML</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="823"/>
<location filename="mainwindow.cpp" line="822"/>
<source>Missing attribute</source>
<translation>Attribut finns ej</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="826"/>
<location filename="mainwindow.cpp" line="825"/>
<source>Bad attribute value</source>
<translation>Ogiltigt attribut värde</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="829"/>
<location filename="mainwindow.cpp" line="828"/>
<source>Unsupported format</source>
<translation>Format stöds ej</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Failed to load the selected library &apos;%1&apos;.
%2</source>
<translation>Misslyckades att ladda valda library &apos;%1&apos;.
%2</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1369"/>
<location filename="mainwindow.cpp" line="1368"/>
<source>License</source>
<translation>Licens</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1376"/>
<location filename="mainwindow.cpp" line="1375"/>
<source>Authors</source>
<translation>Utvecklare</translation>
</message>
@ -1206,13 +1206,13 @@ Vill du fortsätta analysen utan att använda någon av dessa projektfiler?</tra
<translation type="obsolete">XML filer version 2 (*.xml);;XML filer version 1 (*.xml);;Text filer (*.txt);;CSV filer (*.csv)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1391"/>
<location filename="mainwindow.cpp" line="1390"/>
<source>Save the report file</source>
<translation>Spara rapport</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1218"/>
<location filename="mainwindow.cpp" line="1398"/>
<location filename="mainwindow.cpp" line="1217"/>
<location filename="mainwindow.cpp" line="1397"/>
<source>XML files (*.xml)</source>
<translation>XML filer (*.xml)</translation>
</message>
@ -1235,39 +1235,39 @@ En trolig orsak är att inställningarna ändrats för olika Cppcheck versioner.
<translation type="obsolete">Välj filer att kontrollera</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="807"/>
<source>The library &apos;%1&apos; contains unknown elements:
%2</source>
<translation>Library filen &apos;%1&apos; har element som ej hanteras:
%2</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="832"/>
<location filename="mainwindow.cpp" line="831"/>
<source>Duplicate platform type</source>
<translation>Dubbel plattformstyp</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="835"/>
<location filename="mainwindow.cpp" line="834"/>
<source>Platform type redefined</source>
<translation>Plattformstyp definieras igen</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="838"/>
<location filename="mainwindow.cpp" line="837"/>
<source>Unknown element</source>
<translation>Element hanteras ej</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="841"/>
<location filename="mainwindow.cpp" line="840"/>
<source>Unknown issue</source>
<translation>Något problem</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Error</source>
<translation>Fel</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Failed to load %1. Your Cppcheck installation is broken. You can use --data-dir=&lt;directory&gt; at the command line to specify where this file is located. Please note that --data-dir is supposed to be used by installation scripts and therefore the GUI does not start when it is used, all that happens is that the setting is configured.</source>
<translation>Misslyckades att ladda %1. Din Cppcheck installation är ej komplett. Du kan använda --data-dir&lt;directory&gt; kommandoraden för att specificera var denna fil finns. Det är meningen att --data-dir kommandot skall köras under installationen, GUIt kommer ej visas när --data-dir används allt som händer är att en inställning görs.</translation>
</message>
@ -1280,7 +1280,7 @@ Opening a new XML file will clear current results.Do you want to proceed?</sourc
När en ny XML fil öppnas tas alla nuvarande resultat bort. Vill du fortsätta?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1220"/>
<location filename="mainwindow.cpp" line="1219"/>
<source>Open the report file</source>
<translation>Öppna rapportfilen</translation>
</message>
@ -1309,12 +1309,12 @@ Vill du stoppa analysen och avsluta Cppcheck?</translation>
<translation type="obsolete">XML filer version 2 (*.xml)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1402"/>
<location filename="mainwindow.cpp" line="1401"/>
<source>Text files (*.txt)</source>
<translation>Text filer (*.txt)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1406"/>
<location filename="mainwindow.cpp" line="1405"/>
<source>CSV files (*.csv)</source>
<translation>CSV filer (*.csv)</translation>
</message>
@ -1335,20 +1335,20 @@ The user interface language has been reset to English. Open the Preferences-dial
Språket har nollställts till Engelska. Öppna Preferences och välj något av de tillgängliga språken.</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1508"/>
<location filename="mainwindow.cpp" line="1507"/>
<source>Project files (*.cppcheck);;All files(*.*)</source>
<translation>Projektfiler (*.cppcheck);;Alla filer(*.*)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1510"/>
<location filename="mainwindow.cpp" line="1509"/>
<source>Select Project File</source>
<translation>Välj projektfil</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="162"/>
<location filename="mainwindow.cpp" line="1472"/>
<location filename="mainwindow.cpp" line="1538"/>
<location filename="mainwindow.cpp" line="1672"/>
<location filename="mainwindow.cpp" line="1471"/>
<location filename="mainwindow.cpp" line="1537"/>
<location filename="mainwindow.cpp" line="1671"/>
<source>Project:</source>
<translation>Projekt:</translation>
</message>
@ -1402,7 +1402,7 @@ Do you want to proceed analysis without using any of these project files?</sourc
Vill du fortsätta analysen utan att använda någon av dessa projekt filer?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1203"/>
<location filename="mainwindow.cpp" line="1202"/>
<source>Current results will be cleared.
Opening a new XML file will clear current results.
@ -1410,7 +1410,7 @@ Do you want to proceed?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1323"/>
<location filename="mainwindow.cpp" line="1322"/>
<source>Analyzer is running.
Do you want to stop the analysis and exit Cppcheck?</source>
@ -1419,42 +1419,42 @@ Do you want to stop the analysis and exit Cppcheck?</source>
Vill du stoppa analysen och avsluta Cppcheck?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1389"/>
<location filename="mainwindow.cpp" line="1388"/>
<source>XML files (*.xml);;Text files (*.txt);;CSV files (*.csv)</source>
<translation>XML filer (*.xml);;Text filer (*.txt);;CSV filer (*.csv)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1602"/>
<location filename="mainwindow.cpp" line="1601"/>
<source>Build dir &apos;%1&apos; does not exist, create it?</source>
<translation>Build dir &apos;%1&apos; existerar ej, skapa den?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1610"/>
<location filename="mainwindow.cpp" line="1609"/>
<source>To check the project using addons, you need a build directory.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1633"/>
<location filename="mainwindow.cpp" line="1632"/>
<source>Failed to import &apos;%1&apos;, analysis is stopped</source>
<translation>Misslyckades att importera &apos;%1&apos;, analysen stoppas</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1657"/>
<location filename="mainwindow.cpp" line="1656"/>
<source>Project files (*.cppcheck)</source>
<translation>Projekt filer (*.cppcheck)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1659"/>
<location filename="mainwindow.cpp" line="1658"/>
<source>Select Project Filename</source>
<translation>Välj Projektfil</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1710"/>
<location filename="mainwindow.cpp" line="1709"/>
<source>No project file loaded</source>
<translation>Inget projekt laddat</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1779"/>
<location filename="mainwindow.cpp" line="1778"/>
<source>The project file
%1
@ -2318,22 +2318,22 @@ Sökvägar och defines importeras.</translation>
<context>
<name>ResultsTree</name>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>File</source>
<translation>Fil</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Severity</source>
<translation>Typ</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Line</source>
<translation>Rad</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Summary</source>
<translation>Sammanfattning</translation>
</message>
@ -2434,7 +2434,7 @@ Sökvägar och defines importeras.</translation>
</message>
<message>
<location filename="resultstree.cpp" line="701"/>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Tag</source>
<translation>Tag</translation>
</message>
@ -2496,17 +2496,17 @@ Välj mappen där filen finns.</translation>
<translation>Välj mapp</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Id</source>
<translation>Id</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Inconclusive</source>
<translation>Inconclusive</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Since date</source>
<translation>Sedan datum</translation>
</message>
@ -2596,32 +2596,32 @@ För att ställa in vilka fel som skall visas använd visa menyn.</translation>
<translation type="obsolete">Meddelande</translation>
</message>
<message>
<location filename="resultsview.cpp" line="455"/>
<location filename="resultsview.cpp" line="454"/>
<source>First included by</source>
<translation>Först inkluderad av</translation>
</message>
<message>
<location filename="resultsview.cpp" line="460"/>
<location filename="resultsview.cpp" line="459"/>
<source>Id</source>
<translation>Id</translation>
</message>
<message>
<location filename="resultsview.cpp" line="462"/>
<location filename="resultsview.cpp" line="461"/>
<source>Bug hunting analysis is incomplete</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="575"/>
<location filename="resultsview.cpp" line="574"/>
<source>Clear Log</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="576"/>
<location filename="resultsview.cpp" line="575"/>
<source>Copy this Log entry</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="577"/>
<location filename="resultsview.cpp" line="576"/>
<source>Copy complete Log</source>
<translation type="unfinished"></translation>
</message>
@ -2930,42 +2930,42 @@ För att ställa in vilka fel som skall visas använd visa menyn.</translation>
<translation>Ej tillgängligt</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="220"/>
<location filename="settingsdialog.cpp" line="219"/>
<source>The executable file &quot;%1&quot; is not available</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="231"/>
<location filename="settingsdialog.cpp" line="230"/>
<source>Add a new application</source>
<translation>Lägg till program</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="264"/>
<location filename="settingsdialog.cpp" line="260"/>
<source>Modify an application</source>
<translation>Ändra program</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="269"/>
<location filename="settingsdialog.cpp" line="265"/>
<source> [Default]</source>
<translation> [Vald]</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="294"/>
<location filename="settingsdialog.cpp" line="290"/>
<source>[Default]</source>
<translation>[Förvald]</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="349"/>
<location filename="settingsdialog.cpp" line="345"/>
<source>Select python binary</source>
<translation>Välj python binär</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="356"/>
<location filename="settingsdialog.cpp" line="352"/>
<source>Select MISRA File</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="387"/>
<location filename="settingsdialog.cpp" line="383"/>
<source>Select clang path</source>
<translation>Välj Clang sökväg</translation>
</message>

View File

@ -500,13 +500,13 @@ Parameters: -l(line) (file)</source>
<location filename="mainwindow.cpp" line="565"/>
<location filename="mainwindow.cpp" line="697"/>
<location filename="mainwindow.cpp" line="719"/>
<location filename="mainwindow.cpp" line="1202"/>
<location filename="mainwindow.cpp" line="1327"/>
<location filename="mainwindow.cpp" line="1601"/>
<location filename="mainwindow.cpp" line="1609"/>
<location filename="mainwindow.cpp" line="1632"/>
<location filename="mainwindow.cpp" line="1709"/>
<location filename="mainwindow.cpp" line="1784"/>
<location filename="mainwindow.cpp" line="1201"/>
<location filename="mainwindow.cpp" line="1326"/>
<location filename="mainwindow.cpp" line="1600"/>
<location filename="mainwindow.cpp" line="1608"/>
<location filename="mainwindow.cpp" line="1631"/>
<location filename="mainwindow.cpp" line="1708"/>
<location filename="mainwindow.cpp" line="1783"/>
<source>Cppcheck</source>
<translation>Cppcheck</translation>
</message>
@ -685,8 +685,8 @@ Parameters: -l(line) (file)</source>
<translation type="obsolete">便(&amp;C)...</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="807"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Information</source>
<translation></translation>
</message>
@ -1107,7 +1107,7 @@ This is probably because the settings were changed between the Cppcheck versions
</message>
<message>
<location filename="mainwindow.cpp" line="86"/>
<location filename="mainwindow.cpp" line="1470"/>
<location filename="mainwindow.cpp" line="1469"/>
<source>Quick Filter:</source>
<translation>:</translation>
</message>
@ -1138,71 +1138,71 @@ Do you want to proceed checking without using any of these project files?</sourc
使</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="808"/>
<location filename="mainwindow.cpp" line="807"/>
<source>The library &apos;%1&apos; contains unknown elements:
%2</source>
<translation> &apos;%1&apos;
%2</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="817"/>
<location filename="mainwindow.cpp" line="816"/>
<source>File not found</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="820"/>
<location filename="mainwindow.cpp" line="819"/>
<source>Bad XML</source>
<translation> XML</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="823"/>
<location filename="mainwindow.cpp" line="822"/>
<source>Missing attribute</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="826"/>
<location filename="mainwindow.cpp" line="825"/>
<source>Bad attribute value</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="829"/>
<location filename="mainwindow.cpp" line="828"/>
<source>Unsupported format</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="832"/>
<location filename="mainwindow.cpp" line="831"/>
<source>Duplicate platform type</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="835"/>
<location filename="mainwindow.cpp" line="834"/>
<source>Platform type redefined</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="838"/>
<location filename="mainwindow.cpp" line="837"/>
<source>Unknown element</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="841"/>
<location filename="mainwindow.cpp" line="840"/>
<source>Unknown issue</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="846"/>
<location filename="mainwindow.cpp" line="845"/>
<source>Failed to load the selected library &apos;%1&apos;.
%2</source>
<translation> &apos;%1&apos;
%2</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Error</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="869"/>
<location filename="mainwindow.cpp" line="868"/>
<source>Failed to load %1. Your Cppcheck installation is broken. You can use --data-dir=&lt;directory&gt; at the command line to specify where this file is located. Please note that --data-dir is supposed to be used by installation scripts and therefore the GUI does not start when it is used, all that happens is that the setting is configured.</source>
<translation> %1 Cppcheck --data-dir=&lt;&gt; &apos;--data-dir&apos; 使使GUI不会启动</translation>
</message>
@ -1215,13 +1215,13 @@ Opening a new XML file will clear current results.Do you want to proceed?</sourc
XML </translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1218"/>
<location filename="mainwindow.cpp" line="1398"/>
<location filename="mainwindow.cpp" line="1217"/>
<location filename="mainwindow.cpp" line="1397"/>
<source>XML files (*.xml)</source>
<translation>XML (*.xml)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1220"/>
<location filename="mainwindow.cpp" line="1219"/>
<source>Open the report file</source>
<translation></translation>
</message>
@ -1234,12 +1234,12 @@ Do you want to stop the checking and exit Cppcheck?</source>
退 Cppcheck</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1369"/>
<location filename="mainwindow.cpp" line="1368"/>
<source>License</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1376"/>
<location filename="mainwindow.cpp" line="1375"/>
<source>Authors</source>
<translation></translation>
</message>
@ -1249,7 +1249,7 @@ Do you want to stop the checking and exit Cppcheck?</source>
<translation type="obsolete">XML 2 (*.xml);;XML 1 (*.xml);; (*.txt);; CSV (*.csv)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1391"/>
<location filename="mainwindow.cpp" line="1390"/>
<source>Save the report file</source>
<translation></translation>
</message>
@ -1262,12 +1262,12 @@ Do you want to stop the checking and exit Cppcheck?</source>
<translation type="obsolete">XML 2 (*.xml)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1402"/>
<location filename="mainwindow.cpp" line="1401"/>
<source>Text files (*.txt)</source>
<translation>(*.txt)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1406"/>
<location filename="mainwindow.cpp" line="1405"/>
<source>CSV files (*.csv)</source>
<translation>CSV (*.csv)</translation>
</message>
@ -1288,20 +1288,20 @@ The user interface language has been reset to English. Open the Preferences-dial
</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1508"/>
<location filename="mainwindow.cpp" line="1507"/>
<source>Project files (*.cppcheck);;All files(*.*)</source>
<translation>(*.cppcheck);;(*.*)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1510"/>
<location filename="mainwindow.cpp" line="1509"/>
<source>Select Project File</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="162"/>
<location filename="mainwindow.cpp" line="1472"/>
<location filename="mainwindow.cpp" line="1538"/>
<location filename="mainwindow.cpp" line="1672"/>
<location filename="mainwindow.cpp" line="1471"/>
<location filename="mainwindow.cpp" line="1537"/>
<location filename="mainwindow.cpp" line="1671"/>
<source>Project:</source>
<translation>:</translation>
</message>
@ -1355,7 +1355,7 @@ Do you want to proceed analysis without using any of these project files?</sourc
使</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1203"/>
<location filename="mainwindow.cpp" line="1202"/>
<source>Current results will be cleared.
Opening a new XML file will clear current results.
@ -1366,7 +1366,7 @@ Do you want to proceed?</source>
?</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1323"/>
<location filename="mainwindow.cpp" line="1322"/>
<source>Analyzer is running.
Do you want to stop the analysis and exit Cppcheck?</source>
@ -1375,42 +1375,42 @@ Do you want to stop the analysis and exit Cppcheck?</source>
退 Cppcheck </translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1389"/>
<location filename="mainwindow.cpp" line="1388"/>
<source>XML files (*.xml);;Text files (*.txt);;CSV files (*.csv)</source>
<translation>XML (*.xml);; (*.txt);;CSV (*.csv)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1602"/>
<location filename="mainwindow.cpp" line="1601"/>
<source>Build dir &apos;%1&apos; does not exist, create it?</source>
<translation> &apos;%1&apos; </translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1610"/>
<location filename="mainwindow.cpp" line="1609"/>
<source>To check the project using addons, you need a build directory.</source>
<translation>使</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1633"/>
<location filename="mainwindow.cpp" line="1632"/>
<source>Failed to import &apos;%1&apos;, analysis is stopped</source>
<translation> &apos;%1&apos; </translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1657"/>
<location filename="mainwindow.cpp" line="1656"/>
<source>Project files (*.cppcheck)</source>
<translation> (*.cppcheck)</translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1659"/>
<location filename="mainwindow.cpp" line="1658"/>
<source>Select Project Filename</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1710"/>
<location filename="mainwindow.cpp" line="1709"/>
<source>No project file loaded</source>
<translation></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="1779"/>
<location filename="mainwindow.cpp" line="1778"/>
<source>The project file
%1
@ -2180,22 +2180,22 @@ Options:
<context>
<name>ResultsTree</name>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>File</source>
<translation></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Severity</source>
<translation></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Line</source>
<translation></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Summary</source>
<translation></translation>
</message>
@ -2296,7 +2296,7 @@ Options:
</message>
<message>
<location filename="resultstree.cpp" line="701"/>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Tag</source>
<translation></translation>
</message>
@ -2358,17 +2358,17 @@ Please select the directory where file is located.</source>
<translation></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Id</source>
<translation>Id</translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Inconclusive</source>
<translation></translation>
</message>
<message>
<location filename="resultstree.cpp" line="1445"/>
<location filename="resultstree.cpp" line="1442"/>
<source>Since date</source>
<translation></translation>
</message>
@ -2510,32 +2510,32 @@ To toggle what kind of errors are shown, open view menu.</source>
<translation type="obsolete"></translation>
</message>
<message>
<location filename="resultsview.cpp" line="455"/>
<location filename="resultsview.cpp" line="454"/>
<source>First included by</source>
<translation></translation>
</message>
<message>
<location filename="resultsview.cpp" line="460"/>
<location filename="resultsview.cpp" line="459"/>
<source>Id</source>
<translation>Id</translation>
</message>
<message>
<location filename="resultsview.cpp" line="462"/>
<location filename="resultsview.cpp" line="461"/>
<source>Bug hunting analysis is incomplete</source>
<translation></translation>
</message>
<message>
<location filename="resultsview.cpp" line="575"/>
<location filename="resultsview.cpp" line="574"/>
<source>Clear Log</source>
<translation></translation>
</message>
<message>
<location filename="resultsview.cpp" line="576"/>
<location filename="resultsview.cpp" line="575"/>
<source>Copy this Log entry</source>
<translation></translation>
</message>
<message>
<location filename="resultsview.cpp" line="577"/>
<location filename="resultsview.cpp" line="576"/>
<source>Copy complete Log</source>
<translation></translation>
</message>
@ -2792,42 +2792,42 @@ To toggle what kind of errors are shown, open view menu.</source>
<translation>N/A</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="220"/>
<location filename="settingsdialog.cpp" line="219"/>
<source>The executable file &quot;%1&quot; is not available</source>
<translation> &quot;%1&quot; </translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="231"/>
<location filename="settingsdialog.cpp" line="230"/>
<source>Add a new application</source>
<translation></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="264"/>
<location filename="settingsdialog.cpp" line="260"/>
<source>Modify an application</source>
<translation></translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="269"/>
<location filename="settingsdialog.cpp" line="265"/>
<source> [Default]</source>
<translation> []</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="294"/>
<location filename="settingsdialog.cpp" line="290"/>
<source>[Default]</source>
<translation>[]</translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="349"/>
<location filename="settingsdialog.cpp" line="345"/>
<source>Select python binary</source>
<translation> python </translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="356"/>
<location filename="settingsdialog.cpp" line="352"/>
<source>Select MISRA File</source>
<translation> MISRA </translation>
</message>
<message>
<location filename="settingsdialog.cpp" line="387"/>
<location filename="settingsdialog.cpp" line="383"/>
<source>Select clang path</source>
<translation> clang </translation>
</message>

View File

@ -481,7 +481,7 @@ static void writeContainerFunctions(QXmlStreamWriter &xmlWriter, const QString &
else if (name == "size")
xmlWriter.writeAttribute("templateParameter", QString::number(extra));
}
foreach (const CppcheckLibraryData::Container::Function &function, functions) {
for (const CppcheckLibraryData::Container::Function &function : functions) {
xmlWriter.writeStartElement("function");
xmlWriter.writeAttribute("name", function.name);
if (!function.action.isEmpty())
@ -529,7 +529,7 @@ static void writeFunction(QXmlStreamWriter &xmlWriter, const CppcheckLibraryData
comments = comments.mid(1);
while (comments.endsWith("\n"))
comments.chop(1);
foreach (const QString &comment, comments.split('\n')) {
for (const QString &comment : comments.split('\n')) {
if (comment.length() >= 1)
xmlWriter.writeComment(comment);
}
@ -558,7 +558,7 @@ static void writeFunction(QXmlStreamWriter &xmlWriter, const CppcheckLibraryData
if (function.leakignore)
xmlWriter.writeEmptyElement("leak-ignore");
// Argument info..
foreach (const CppcheckLibraryData::Function::Arg &arg, function.args) {
for (const CppcheckLibraryData::Function::Arg &arg : function.args) {
if (arg.formatstr) {
xmlWriter.writeStartElement("formatstr");
if (!function.formatstr.scan.isNull())
@ -591,7 +591,7 @@ static void writeFunction(QXmlStreamWriter &xmlWriter, const CppcheckLibraryData
if (!arg.valid.isEmpty())
xmlWriter.writeTextElement("valid",arg.valid);
foreach (const CppcheckLibraryData::Function::Arg::MinSize &minsize, arg.minsizes) {
for (const CppcheckLibraryData::Function::Arg::MinSize &minsize : arg.minsizes) {
xmlWriter.writeStartElement("minsize");
xmlWriter.writeAttribute("type", minsize.type);
xmlWriter.writeAttribute("arg", minsize.arg);
@ -639,7 +639,7 @@ static void writeFunction(QXmlStreamWriter &xmlWriter, const CppcheckLibraryData
static void writeMemoryResource(QXmlStreamWriter &xmlWriter, const CppcheckLibraryData::MemoryResource &mr)
{
xmlWriter.writeStartElement(mr.type);
foreach (const CppcheckLibraryData::MemoryResource::Alloc &alloc, mr.alloc) {
for (const CppcheckLibraryData::MemoryResource::Alloc &alloc : mr.alloc) {
if (alloc.isRealloc) {
xmlWriter.writeStartElement("realloc");
} else {
@ -659,7 +659,7 @@ static void writeMemoryResource(QXmlStreamWriter &xmlWriter, const CppcheckLibra
xmlWriter.writeEndElement();
}
foreach (const CppcheckLibraryData::MemoryResource::Dealloc &dealloc, mr.dealloc) {
for (const CppcheckLibraryData::MemoryResource::Dealloc &dealloc : mr.dealloc) {
xmlWriter.writeStartElement("dealloc");
if (dealloc.arg != -1) {
xmlWriter.writeAttribute("arg", QString("%1").arg(dealloc.arg));
@ -668,7 +668,7 @@ static void writeMemoryResource(QXmlStreamWriter &xmlWriter, const CppcheckLibra
xmlWriter.writeEndElement();
}
foreach (const QString &use, mr.use) {
for (const QString &use : mr.use) {
xmlWriter.writeTextElement("use", use);
}
xmlWriter.writeEndElement();
@ -676,12 +676,11 @@ static void writeMemoryResource(QXmlStreamWriter &xmlWriter, const CppcheckLibra
static void writeTypeChecks(QXmlStreamWriter &xmlWriter, const CppcheckLibraryData::TypeChecks &typeChecks)
{
QPair<QString, QString> check;
xmlWriter.writeStartElement("type-checks");
if (!typeChecks.isEmpty()) {
xmlWriter.writeStartElement("unusedvar");
}
foreach (check, typeChecks) {
for (const QPair<QString, QString> &check : typeChecks) {
xmlWriter.writeStartElement(check.first);
xmlWriter.writeCharacters(check.second);
xmlWriter.writeEndElement();
@ -697,11 +696,11 @@ static void writePlatformType(QXmlStreamWriter &xmlWriter, const CppcheckLibrary
xmlWriter.writeStartElement("platformtype");
xmlWriter.writeAttribute("name", pt.name);
xmlWriter.writeAttribute("value", pt.value);
foreach (const QString type, pt.types) {
for (const QString &type : pt.types) {
xmlWriter.writeStartElement(type);
xmlWriter.writeEndElement();
}
foreach (const QString platform, pt.platforms) {
for (const QString &platform : pt.platforms) {
xmlWriter.writeStartElement("platform");
if (!platform.isEmpty()) {
xmlWriter.writeAttribute("type", platform);
@ -714,7 +713,7 @@ static void writePlatformType(QXmlStreamWriter &xmlWriter, const CppcheckLibrary
static void writeReflection(QXmlStreamWriter &xmlWriter, const CppcheckLibraryData::Reflection &refl)
{
xmlWriter.writeStartElement("reflection");
foreach (const CppcheckLibraryData::Reflection::Call &call, refl.calls) {
for (const CppcheckLibraryData::Reflection::Call &call : refl.calls) {
xmlWriter.writeStartElement("call");
xmlWriter.writeAttribute("arg", QString("%1").arg(call.arg));
xmlWriter.writeCharacters(call.name);
@ -731,7 +730,7 @@ static void writeMarkup(QXmlStreamWriter &xmlWriter, const CppcheckLibraryData::
xmlWriter.writeAttribute("reporterrors", QVariant(mup.reportErrors).toString());
if (!mup.keywords.isEmpty()) {
xmlWriter.writeStartElement("keywords");
foreach (const QString &keyword, mup.keywords) {
for (const QString &keyword : mup.keywords) {
xmlWriter.writeStartElement("keyword");
xmlWriter.writeAttribute("name", keyword);
xmlWriter.writeEndElement();
@ -740,7 +739,7 @@ static void writeMarkup(QXmlStreamWriter &xmlWriter, const CppcheckLibraryData::
}
if (!mup.importer.isEmpty()) {
xmlWriter.writeStartElement("imported");
foreach (const QString &import, mup.importer) {
for (const QString &import : mup.importer) {
xmlWriter.writeStartElement("importer");
xmlWriter.writeCharacters(import);
xmlWriter.writeEndElement();
@ -749,15 +748,15 @@ static void writeMarkup(QXmlStreamWriter &xmlWriter, const CppcheckLibraryData::
}
if (!mup.exporter.isEmpty()) {
xmlWriter.writeStartElement("exported");
foreach (const CppcheckLibraryData::Markup::Exporter exporter, mup.exporter) {
for (const CppcheckLibraryData::Markup::Exporter &exporter : mup.exporter) {
xmlWriter.writeStartElement("exporter");
xmlWriter.writeAttribute("prefix", exporter.prefix);
foreach (const QString &prefix, exporter.prefixList) {
for (const QString &prefix : exporter.prefixList) {
xmlWriter.writeStartElement("prefix");
xmlWriter.writeCharacters(prefix);
xmlWriter.writeEndElement();
}
foreach (const QString &suffix, exporter.suffixList) {
for (const QString &suffix : exporter.suffixList) {
xmlWriter.writeStartElement("suffix");
xmlWriter.writeCharacters(suffix);
xmlWriter.writeEndElement();
@ -767,9 +766,9 @@ static void writeMarkup(QXmlStreamWriter &xmlWriter, const CppcheckLibraryData::
xmlWriter.writeEndElement();
}
if (!mup.codeBlocks.isEmpty()) {
foreach (const CppcheckLibraryData::Markup::CodeBlocks codeblock, mup.codeBlocks) {
for (const CppcheckLibraryData::Markup::CodeBlocks &codeblock : mup.codeBlocks) {
xmlWriter.writeStartElement("codeblocks");
foreach (const QString &block, codeblock.blocks) {
for (const QString &block : codeblock.blocks) {
xmlWriter.writeStartElement("block");
xmlWriter.writeAttribute("name", block);
xmlWriter.writeEndElement();
@ -795,32 +794,32 @@ QString CppcheckLibraryData::toString() const
xmlWriter.writeStartElement("def");
xmlWriter.writeAttribute("format","2");
foreach (const Define &define, defines) {
for (const Define &define : defines) {
xmlWriter.writeStartElement("define");
xmlWriter.writeAttribute("name", define.name);
xmlWriter.writeAttribute("value", define.value);
xmlWriter.writeEndElement();
}
foreach (const QString &undef, undefines) {
for (const QString &undef : undefines) {
xmlWriter.writeStartElement("undefine");
xmlWriter.writeAttribute("name", undef);
xmlWriter.writeEndElement();
}
foreach (const Function &function, functions) {
for (const Function &function : functions) {
writeFunction(xmlWriter, function);
}
foreach (const MemoryResource &mr, memoryresource) {
for (const MemoryResource &mr : memoryresource) {
writeMemoryResource(xmlWriter, mr);
}
foreach (const Container &container, containers) {
for (const Container &container : containers) {
writeContainer(xmlWriter, container);
}
foreach (const PodType &podtype, podtypes) {
for (const PodType &podtype : podtypes) {
xmlWriter.writeStartElement("podtype");
xmlWriter.writeAttribute("name", podtype.name);
if (!podtype.stdtype.isEmpty())
@ -832,25 +831,25 @@ QString CppcheckLibraryData::toString() const
xmlWriter.writeEndElement();
}
foreach (const TypeChecks check, typeChecks) {
for (const TypeChecks &check : typeChecks) {
writeTypeChecks(xmlWriter, check);
}
foreach (const QString &smartPtr, smartPointers) {
for (const QString &smartPtr : smartPointers) {
xmlWriter.writeStartElement("smart-pointer");
xmlWriter.writeAttribute("class-name", smartPtr);
xmlWriter.writeEndElement();
}
foreach (const PlatformType &pt, platformTypes) {
for (const PlatformType &pt : platformTypes) {
writePlatformType(xmlWriter, pt);
}
foreach (const Reflection &refl, reflections) {
for (const Reflection &refl : reflections) {
writeReflection(xmlWriter, refl);
}
foreach (const Markup &mup, markups) {
for (const Markup &mup : markups) {
writeMarkup(xmlWriter, mup);
}

View File

@ -66,9 +66,7 @@ void FileList::addDirectory(const QString &directory, bool recursive)
dir.setNameFilters(origNameFilters);
dir.setFilter(QDir::Dirs | QDir::NoDotAndDotDot);
QFileInfoList list = dir.entryInfoList();
QFileInfo item;
foreach (item, list) {
for (const QFileInfo& item : dir.entryInfoList()) {
const QString path = item.canonicalFilePath();
addDirectory(path, recursive);
}
@ -77,8 +75,7 @@ void FileList::addDirectory(const QString &directory, bool recursive)
void FileList::addPathList(const QStringList &paths)
{
QString path;
foreach (path, paths) {
for (const QString& path : paths) {
QFileInfo inf(path);
if (inf.isFile())
addFile(path);
@ -91,7 +88,7 @@ QStringList FileList::getFileList() const
{
if (mExcludedPaths.empty()) {
QStringList names;
foreach (QFileInfo item, mFileList) {
for (const QFileInfo& item : mFileList) {
QString name = QDir::fromNativeSeparators(item.filePath());
names << name;
}
@ -109,7 +106,7 @@ void FileList::addExcludeList(const QStringList &paths)
static std::vector<std::string> toStdStringList(const QStringList &stringList)
{
std::vector<std::string> ret;
foreach (const QString &s, stringList) {
for (const QString &s : stringList) {
ret.push_back(s.toStdString());
}
return ret;
@ -124,7 +121,7 @@ QStringList FileList::applyExcludeList() const
#endif
QStringList paths;
foreach (QFileInfo item, mFileList) {
for (const QFileInfo& item : mFileList) {
QString name = QDir::fromNativeSeparators(item.canonicalFilePath());
if (!pathMatch.match(name.toStdString()))
paths << name;

View File

@ -276,11 +276,11 @@ void LibraryDialog::filterFunctions(const QString& filter)
QList<QListWidgetItem *> allItems = mUi->functions->findItems(QString(), Qt::MatchContains);
if (filter.isEmpty()) {
foreach (QListWidgetItem *item, allItems) {
for (QListWidgetItem *item : allItems) {
item->setHidden(false);
}
} else {
foreach (QListWidgetItem *item, allItems) {
for (QListWidgetItem *item : allItems) {
item->setHidden(!item->text().startsWith(filter));
}
}
@ -335,7 +335,7 @@ QString LibraryDialog::getArgText(const CppcheckLibraryData::Function::Arg &arg)
s += "\n format string: " + QString(arg.formatstr ? "true" : "false");
s += "\n strz: " + QString(arg.strz ? "true" : "false");
s += "\n valid: " + QString(arg.valid.isEmpty() ? "any" : arg.valid);
foreach (const CppcheckLibraryData::Function::Arg::MinSize &minsize, arg.minsizes) {
for (const CppcheckLibraryData::Function::Arg::MinSize &minsize : arg.minsizes) {
s += "\n minsize: " + minsize.type + " " + minsize.arg + " " + minsize.arg2;
}
return s;
@ -344,7 +344,7 @@ QString LibraryDialog::getArgText(const CppcheckLibraryData::Function::Arg &arg)
void LibraryDialog::updateArguments(const CppcheckLibraryData::Function &function)
{
mUi->arguments->clear();
foreach (const CppcheckLibraryData::Function::Arg &arg, function.args) {
for (const CppcheckLibraryData::Function::Arg &arg : function.args) {
mUi->arguments->addItem(getArgText(arg));
}
}

View File

@ -56,7 +56,7 @@ int main(int argc, char *argv[])
QSettings* settings = new QSettings("Cppcheck", "Cppcheck-GUI", &app);
// Set data dir..
foreach (const QString arg, app.arguments()) {
for (const QString& arg : QApplication::arguments()) {
if (arg.startsWith("--data-dir=")) {
settings->setValue("DATADIR", arg.mid(11));
return 0;

View File

@ -414,7 +414,7 @@ void MainWindow::doAnalyzeProject(ImportProject p, const bool checkLibrary, cons
mIsLogfileLoaded = false;
if (mProjectFile) {
std::vector<std::string> v;
foreach (const QString &i, mProjectFile->getExcludedPaths()) {
for (const QString &i : mProjectFile->getExcludedPaths()) {
v.push_back(i.toStdString());
}
p.ignorePaths(v);
@ -737,8 +737,7 @@ void MainWindow::analyzeDirectory()
void MainWindow::addIncludeDirs(const QStringList &includeDirs, Settings &result)
{
QString dir;
foreach (dir, includeDirs) {
for (const QString& dir : includeDirs) {
QString incdir;
if (!QDir::isAbsolutePath(dir))
incdir = mCurrentDirectory + "/";
@ -874,7 +873,7 @@ Settings MainWindow::getCppcheckSettings()
addIncludeDirs(dirs, result);
const QStringList defines = mProjectFile->getDefines();
foreach (QString define, defines) {
for (const QString& define : defines) {
if (!result.userDefines.empty())
result.userDefines += ";";
result.userDefines += define.toStdString();
@ -890,17 +889,17 @@ Settings MainWindow::getCppcheckSettings()
result.variableContracts[vc.first.toStdString()] = vc.second;
const QStringList undefines = mProjectFile->getUndefines();
foreach (QString undefine, undefines)
result.userUndefs.insert(undefine.toStdString());
for (const QString& undefine : undefines)
result.userUndefs.insert(undefine.toStdString());
const QStringList libraries = mProjectFile->getLibraries();
foreach (QString library, libraries) {
for (const QString& library : libraries) {
result.libraries.emplace_back(library.toStdString());
const QString filename = library + ".cfg";
tryLoadLibrary(&result.library, filename);
}
foreach (const Suppressions::Suppression &suppression, mProjectFile->getSuppressions()) {
for (const Suppressions::Suppression &suppression : mProjectFile->getSuppressions()) {
result.nomsg.addSuppression(suppression);
}
@ -944,12 +943,12 @@ Settings MainWindow::getCppcheckSettings()
result.safeChecks.externalFunctions = mProjectFile->safeChecks.externalFunctions;
result.safeChecks.internalFunctions = mProjectFile->safeChecks.internalFunctions;
result.safeChecks.externalVariables = mProjectFile->safeChecks.externalVariables;
foreach (QString s, mProjectFile->getCheckUnknownFunctionReturn())
result.checkUnknownFunctionReturn.insert(s.toStdString());
for (const QString& s : mProjectFile->getCheckUnknownFunctionReturn())
result.checkUnknownFunctionReturn.insert(s.toStdString());
QString filesDir(getDataDir());
const QString pythonCmd = mSettings->value(SETTINGS_PYTHON_PATH).toString();
foreach (QString addon, mProjectFile->getAddons()) {
for (const QString& addon : mProjectFile->getAddons()) {
QString addonFilePath = ProjectFile::getAddonFilePath(filesDir, addon);
if (addonFilePath.isEmpty())
continue;
@ -1866,7 +1865,7 @@ void MainWindow::suppressIds(QStringList ids)
ids.removeDuplicates();
QList<Suppressions::Suppression> suppressions = mProjectFile->getSuppressions();
foreach (QString id, ids) {
for (const QString& id : ids) {
// Remove all matching suppressions
std::string id2 = id.toStdString();
for (int i = 0; i < suppressions.size();) {

View File

@ -904,7 +904,7 @@ bool ProjectFile::write(const QString &filename)
if (!mIncludeDirs.isEmpty()) {
xmlWriter.writeStartElement(CppcheckXml::IncludeDirElementName);
foreach (QString incdir, mIncludeDirs) {
for (const QString& incdir : mIncludeDirs) {
xmlWriter.writeStartElement(CppcheckXml::DirElementName);
xmlWriter.writeAttribute(CppcheckXml::DirNameAttrib, incdir);
xmlWriter.writeEndElement();
@ -914,7 +914,7 @@ bool ProjectFile::write(const QString &filename)
if (!mDefines.isEmpty()) {
xmlWriter.writeStartElement(CppcheckXml::DefinesElementName);
foreach (QString define, mDefines) {
for (const QString& define : mDefines) {
xmlWriter.writeStartElement(CppcheckXml::DefineName);
xmlWriter.writeAttribute(CppcheckXml::DefineNameAttrib, define);
xmlWriter.writeEndElement();
@ -936,7 +936,7 @@ bool ProjectFile::write(const QString &filename)
if (!mPaths.isEmpty()) {
xmlWriter.writeStartElement(CppcheckXml::PathsElementName);
foreach (QString path, mPaths) {
for (const QString& path : mPaths) {
xmlWriter.writeStartElement(CppcheckXml::PathName);
xmlWriter.writeAttribute(CppcheckXml::PathNameAttrib, path);
xmlWriter.writeEndElement();
@ -946,7 +946,7 @@ bool ProjectFile::write(const QString &filename)
if (!mExcludedPaths.isEmpty()) {
xmlWriter.writeStartElement(CppcheckXml::ExcludeElementName);
foreach (QString path, mExcludedPaths) {
for (const QString& path : mExcludedPaths) {
xmlWriter.writeStartElement(CppcheckXml::ExcludePathName);
xmlWriter.writeAttribute(CppcheckXml::ExcludePathNameAttrib, path);
xmlWriter.writeEndElement();
@ -986,7 +986,7 @@ bool ProjectFile::write(const QString &filename)
if (!mSuppressions.isEmpty()) {
xmlWriter.writeStartElement(CppcheckXml::SuppressionsElementName);
foreach (const Suppressions::Suppression &suppression, mSuppressions) {
for (const Suppressions::Suppression &suppression : mSuppressions) {
xmlWriter.writeStartElement(CppcheckXml::SuppressionElementName);
if (!suppression.fileName.empty())
xmlWriter.writeAttribute("fileName", QString::fromStdString(suppression.fileName));
@ -1057,7 +1057,7 @@ void ProjectFile::writeStringList(QXmlStreamWriter &xmlWriter, const QStringList
return;
xmlWriter.writeStartElement(startelementname);
foreach (QString str, stringlist) {
for (const QString& str : stringlist) {
xmlWriter.writeStartElement(stringelementname);
xmlWriter.writeCharacters(str);
xmlWriter.writeEndElement();
@ -1068,8 +1068,8 @@ void ProjectFile::writeStringList(QXmlStreamWriter &xmlWriter, const QStringList
QStringList ProjectFile::fromNativeSeparators(const QStringList &paths)
{
QStringList ret;
foreach (const QString &path, paths)
ret << QDir::fromNativeSeparators(path);
for (const QString &path : paths)
ret << QDir::fromNativeSeparators(path);
return ret;
}
@ -1159,7 +1159,7 @@ QString ProjectFile::getAddonFilePath(QString filesDir, const QString &addon)
#endif
;
foreach (QString path, searchPaths) {
for (const QString& path : searchPaths) {
QString f = path + addon + ".py";
if (QFile(f).exists())
return f;

View File

@ -100,12 +100,12 @@ ProjectFileDialog::ProjectFileDialog(ProjectFile *projectFile, QWidget *parent)
QStringList libs;
// Search the std.cfg first since other libraries could depend on it
QString stdLibraryFilename;
foreach (const QString sp, searchPaths) {
for (const QString &sp : searchPaths) {
QDir dir(sp);
dir.setSorting(QDir::Name);
dir.setNameFilters(QStringList("*.cfg"));
dir.setFilter(QDir::Files | QDir::NoDotAndDotDot);
foreach (QFileInfo item, dir.entryInfoList()) {
for (const QFileInfo& item : dir.entryInfoList()) {
QString library = item.fileName();
if (library.compare("std.cfg", Qt::CaseInsensitive) != 0)
continue;
@ -122,12 +122,12 @@ ProjectFileDialog::ProjectFileDialog(ProjectFile *projectFile, QWidget *parent)
break;
}
// Search other libraries
foreach (const QString sp, searchPaths) {
for (const QString &sp : searchPaths) {
QDir dir(sp);
dir.setSorting(QDir::Name);
dir.setNameFilters(QStringList("*.cfg"));
dir.setFilter(QDir::Files | QDir::NoDotAndDotDot);
foreach (QFileInfo item, dir.entryInfoList()) {
for (const QFileInfo& item : dir.entryInfoList()) {
QString library = item.fileName();
{
Library lib;
@ -161,14 +161,14 @@ ProjectFileDialog::ProjectFileDialog(ProjectFile *projectFile, QWidget *parent)
for (cppcheck::Platform::PlatformType builtinPlatform : builtinPlatforms)
mUI->mComboBoxPlatform->addItem(platforms.get(builtinPlatform).mTitle);
QStringList platformFiles;
foreach (QString sp, searchPaths) {
for (QString sp : searchPaths) {
if (sp.endsWith("/cfg"))
sp = sp.mid(0,sp.length()-3) + "platforms";
QDir dir(sp);
dir.setSorting(QDir::Name);
dir.setNameFilters(QStringList("*.xml"));
dir.setFilter(QDir::Files | QDir::NoDotAndDotDot);
foreach (QFileInfo item, dir.entryInfoList()) {
for (const QFileInfo& item : dir.entryInfoList()) {
const QString platformFile = item.fileName();
cppcheck::Platform plat2;
@ -528,7 +528,7 @@ void ProjectFileDialog::setProjectConfigurations(const QStringList &configs)
{
mUI->mListVsConfigs->clear();
mUI->mListVsConfigs->setEnabled(!configs.isEmpty() && !mUI->mChkAllVsConfigs->isChecked());
foreach (const QString &cfg, configs) {
for (const QString &cfg : configs) {
QListWidgetItem* item = new QListWidgetItem(cfg, mUI->mListVsConfigs);
item->setFlags(item->flags() | Qt::ItemIsUserCheckable); // set checkable flag
item->setCheckState(Qt::Unchecked);
@ -650,7 +650,7 @@ void ProjectFileDialog::setImportProject(const QString &importProject)
void ProjectFileDialog::setIncludepaths(const QStringList &includes)
{
foreach (QString dir, includes) {
for (const QString& dir : includes) {
addIncludeDir(dir);
}
}
@ -667,14 +667,14 @@ void ProjectFileDialog::setUndefines(const QStringList &undefines)
void ProjectFileDialog::setCheckPaths(const QStringList &paths)
{
foreach (QString path, paths) {
for (const QString& path : paths) {
addCheckPath(path);
}
}
void ProjectFileDialog::setExcludedPaths(const QStringList &paths)
{
foreach (QString path, paths) {
for (const QString& path : paths) {
addExcludePath(path);
}
}
@ -724,7 +724,7 @@ void ProjectFileDialog::setSuppressions(const QList<Suppressions::Suppression> &
mUI->mListSuppressions->clear();
QList<Suppressions::Suppression> new_suppressions = suppressions;
mSuppressions.clear();
foreach (const Suppressions::Suppression &suppression, new_suppressions) {
for (const Suppressions::Suppression &suppression : new_suppressions) {
addSingleSuppression(suppression);
}
mUI->mListSuppressions->sortItems();

View File

@ -707,7 +707,7 @@ void ResultsTree::contextMenuEvent(QContextMenuEvent * e)
});
}
foreach (const QString tagstr, currentProject->getTags()) {
for (const QString& tagstr : currentProject->getTags()) {
QAction *action = new QAction(tagstr, tagMenu);
tagMenu->addAction(action);
connect(action, &QAction::triggered, [=]() {
@ -894,9 +894,8 @@ void ResultsTree::copy()
if (!mSelectionModel)
return;
QModelIndexList selectedRows = mSelectionModel->selectedRows();
QString text;
foreach (QModelIndex index, selectedRows) {
for (QModelIndex index : mSelectionModel->selectedRows()) {
QStandardItem *item = mModel.itemFromIndex(index);
if (!item->parent()) {
text += item->text() + '\n';
@ -927,8 +926,7 @@ void ResultsTree::hideResult()
if (!mSelectionModel)
return;
QModelIndexList selectedRows = mSelectionModel->selectedRows();
foreach (QModelIndex index, selectedRows) {
for (QModelIndex index : mSelectionModel->selectedRows()) {
QStandardItem *item = mModel.itemFromIndex(index);
//Set the "hide" flag for this item
QVariantMap data = item->data().toMap();
@ -945,9 +943,8 @@ void ResultsTree::recheckSelectedFiles()
if (!mSelectionModel)
return;
QModelIndexList selectedRows = mSelectionModel->selectedRows();
QStringList selectedItems;
foreach (QModelIndex index, selectedRows) {
for (QModelIndex index : mSelectionModel->selectedRows()) {
QStandardItem *item = mModel.itemFromIndex(index);
while (item->parent())
item = item->parent();
@ -1030,7 +1027,7 @@ void ResultsTree::suppressSelectedIds()
QModelIndexList selectedRows = mSelectionModel->selectedRows();
QSet<QString> selectedIds;
foreach (QModelIndex index, selectedRows) {
for (QModelIndex index : mSelectionModel->selectedRows()) {
QStandardItem *item = mModel.itemFromIndex(index);
if (!item->parent())
continue;
@ -1069,7 +1066,7 @@ void ResultsTree::suppressHash()
// Extract selected warnings
QSet<QStandardItem *> selectedWarnings;
foreach (QModelIndex index, mSelectionModel->selectedRows()) {
for (QModelIndex index : mSelectionModel->selectedRows()) {
QStandardItem *item = mModel.itemFromIndex(index);
if (!item->parent())
continue;
@ -1121,7 +1118,7 @@ void ResultsTree::tagSelectedItems(const QString &tag)
return;
bool isTagged = false;
ProjectFile *currentProject = ProjectFile::getActiveProject();
foreach (QModelIndex index, mSelectionModel->selectedRows()) {
for (QModelIndex index : mSelectionModel->selectedRows()) {
QStandardItem *item = mModel.itemFromIndex(index);
QVariantMap data = item->data().toMap();
if (data.contains("tags")) {

View File

@ -196,7 +196,7 @@ void ResultsView::saveStatistics(const QString &filename) const
QTextStream ts(&f);
ts << '[' << QDate::currentDate().toString("dd.MM.yyyy") << "]\n";
ts << QDateTime::currentMSecsSinceEpoch() << '\n';
foreach (QString tool, mStatistics->getTools()) {
for (const QString& tool : mStatistics->getTools()) {
ts << tool << "-error:" << mStatistics->getCount(tool, ShowTypes::ShowErrors) << '\n';
ts << tool << "-warning:" << mStatistics->getCount(tool, ShowTypes::ShowWarnings) << '\n';
ts << tool << "-style:" << mStatistics->getCount(tool, ShowTypes::ShowStyle) << '\n';
@ -408,8 +408,7 @@ void ResultsView::readErrorsXml(const QString &filename)
msgBox.exec();
}
ErrorItem item;
foreach (item, errors) {
for (const ErrorItem& item : errors) {
mUI->mTree->addErrorItem(item);
}

View File

@ -120,8 +120,7 @@ SettingsDialog::~SettingsDialog()
void SettingsDialog::initTranslationsList()
{
const QString current = mTranslator->getCurrentLanguage();
QList<TranslationInfo> translations = mTranslator->getTranslations();
foreach (TranslationInfo translation, translations) {
for (const TranslationInfo& translation : mTranslator->getTranslations()) {
QListWidgetItem *item = new QListWidgetItem;
item->setText(translation.mName);
item->setData(mLangCodeRole, QVariant(translation.mCode));
@ -238,8 +237,7 @@ void SettingsDialog::addApplication()
void SettingsDialog::removeApplication()
{
QList<QListWidgetItem *> selected = mUI->mListWidget->selectedItems();
foreach (QListWidgetItem *item, selected) {
for (QListWidgetItem *item : mUI->mListWidget->selectedItems()) {
const int removeIndex = mUI->mListWidget->row(item);
const int currentDefault = mTempApplications->getDefaultApplication();
mTempApplications->removeApplication(removeIndex);
@ -256,9 +254,7 @@ void SettingsDialog::removeApplication()
void SettingsDialog::editApplication()
{
QList<QListWidgetItem *> selected = mUI->mListWidget->selectedItems();
QListWidgetItem *item = nullptr;
foreach (item, selected) {
for (QListWidgetItem *item : mUI->mListWidget->selectedItems()) {
int row = mUI->mListWidget->row(item);
Application& app = mTempApplications->getApplication(row);
ApplicationDialog dialog(tr("Modify an application"), app, this);

View File

@ -366,7 +366,7 @@ QChartView *StatsDialog::createChart(const QString &statsFile, const QString &to
axisX->setTitleText("Date");
chart->addAxis(axisX, Qt::AlignBottom);
foreach (QAbstractSeries *s, chart->series()) {
for (QAbstractSeries *s : chart->series()) {
s->attachAxis(axisX);
}
@ -376,10 +376,10 @@ QChartView *StatsDialog::createChart(const QString &statsFile, const QString &to
chart->addAxis(axisY, Qt::AlignLeft);
qreal maxY = 0;
foreach (QAbstractSeries *s, chart->series()) {
for (QAbstractSeries *s : chart->series()) {
s->attachAxis(axisY);
if (QLineSeries *ls = dynamic_cast<QLineSeries*>(s)) {
foreach (QPointF p, ls->points()) {
for (QPointF p : ls->points()) {
if (p.y() > maxY)
maxY = p.y();
}

View File

@ -25,7 +25,7 @@
static const QStringList getTranslationNames(const TranslationHandler& handler)
{
QStringList names;
foreach (TranslationInfo translation, handler.getTranslations()) {
for (const TranslationInfo& translation : handler.getTranslations()) {
names.append(translation.mName);
}
return names;

View File

@ -96,7 +96,7 @@ void ThreadResult::setFiles(const QStringList &files)
// Determine the total size of all of the files to check, so that we can
// show an accurate progress estimate
quint64 sizeOfFiles = 0;
foreach (const QString& file, files) {
for (const QString& file : files) {
sizeOfFiles += QFile(file).size();
}
mMaxProgress = sizeOfFiles;
@ -114,7 +114,7 @@ void ThreadResult::setProject(const ImportProject &prj)
// Determine the total size of all of the files to check, so that we can
// show an accurate progress estimate
quint64 sizeOfFiles = 0;
foreach (const ImportProject::FileSettings& fs, prj.fileSettings) {
for (const ImportProject::FileSettings& fs : prj.fileSettings) {
sizeOfFiles += QFile(QString::fromStdString(fs.filename)).size();
}
mMaxProgress = sizeOfFiles;