l10n: Eliminated some column labels

This commit is contained in:
Paul Beckingham
2018-01-21 22:32:17 -05:00
parent 2872b44b45
commit 41f2133693
16 changed files with 22 additions and 207 deletions

View File

@@ -35,7 +35,7 @@ ColumnStatus::ColumnStatus ()
{
_name = "status";
_style = "long";
_label = STRING_COLUMN_LABEL_STATUS;
_label = "Status";
_styles = {"long", "short"};
_examples = {STRING_COLUMN_LABEL_STAT_PE,
STRING_COLUMN_LABEL_STAT_P};
@@ -48,7 +48,7 @@ void ColumnStatus::setStyle (const std::string& value)
{
Column::setStyle (value);
if (_style == "short" && _label == STRING_COLUMN_LABEL_STATUS)
if (_style == "short" && _label == "Status")
_label = STRING_COLUMN_LABEL_STAT;
}