summaryrefslogtreecommitdiffstats
path: root/api/logic/translations
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2019-01-14 01:36:04 +0100
committerPetr Mrázek <peterix@gmail.com>2019-01-14 01:36:04 +0100
commit7436c94976b2ee0c6f8a9e69d6acb8369ba4cbe6 (patch)
tree2ba4921a6d262d43a2e70856d54e2f45a59dc2fe /api/logic/translations
parentc08053d8b87de4d0fd4f9ac51021e03dfd851420 (diff)
downloadMultiMC-7436c94976b2ee0c6f8a9e69d6acb8369ba4cbe6.tar
MultiMC-7436c94976b2ee0c6f8a9e69d6acb8369ba4cbe6.tar.gz
MultiMC-7436c94976b2ee0c6f8a9e69d6acb8369ba4cbe6.tar.lz
MultiMC-7436c94976b2ee0c6f8a9e69d6acb8369ba4cbe6.tar.xz
MultiMC-7436c94976b2ee0c6f8a9e69d6acb8369ba4cbe6.zip
NOISSUE Replace Quality with Completeness in language widget
Completeness does no imply quality.
Diffstat (limited to 'api/logic/translations')
-rw-r--r--api/logic/translations/TranslationsModel.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/api/logic/translations/TranslationsModel.cpp b/api/logic/translations/TranslationsModel.cpp
index b1c65917..58ff4384 100644
--- a/api/logic/translations/TranslationsModel.cpp
+++ b/api/logic/translations/TranslationsModel.cpp
@@ -308,7 +308,7 @@ namespace {
enum class Column
{
Language,
- Quality
+ Completeness
};
}
@@ -335,7 +335,7 @@ QVariant TranslationsModel::data(const QModelIndex& index, int role) const
{
return d->m_languages[row].locale.nativeLanguageName();
}
- case Column::Quality:
+ case Column::Completeness:
{
QString text;
text.sprintf("%3.1f %%", lang.percentTranslated());
@@ -365,9 +365,9 @@ QVariant TranslationsModel::headerData(int section, Qt::Orientation orientation,
{
return tr("Language");
}
- case Column::Quality:
+ case Column::Completeness:
{
- return tr("Quality");
+ return tr("Completeness");
}
}
}
@@ -379,9 +379,9 @@ QVariant TranslationsModel::headerData(int section, Qt::Orientation orientation,
{
return tr("The native language name.");
}
- case Column::Quality:
+ case Column::Completeness:
{
- return tr("Quality is the percentage of fully translated strings, not counting automatically guessed ones.");
+ return tr("Completeness is the percentage of fully translated strings, not counting automatically guessed ones.");
}
}
}