l10n: Eliminated some column labels

This commit is contained in:
Paul Beckingham 2018-01-21 22:09:51 -05:00
parent 6c1a411d7e
commit a6c4c2fb2a
11 changed files with 3 additions and 12 deletions

View file

@ -32,7 +32,7 @@
ColumnScheduled::ColumnScheduled ()
{
_name = "scheduled";
_label = STRING_COLUMN_LABEL_SCHED;
_label = "Scheduled";
}
////////////////////////////////////////////////////////////////////////////////
@ -42,7 +42,7 @@ void ColumnScheduled::setStyle (const std::string& value)
{
Column::setStyle (value);
if (_style == "countdown" && _label == STRING_COLUMN_LABEL_SCHED)
if (_style == "countdown" && _label == "Scheduled")
_label = "Count";
}