l10n: Eliminated some column labels

This commit is contained in:
Paul Beckingham 2018-01-21 22:07:57 -05:00
parent e6fd4efd08
commit 03ede837e4
11 changed files with 3 additions and 13 deletions

View file

@ -26,14 +26,13 @@
#include <cmake.h>
#include <ColDue.h>
#include <i18n.h>
////////////////////////////////////////////////////////////////////////////////
ColumnDue::ColumnDue ()
{
_name = "due";
_modifiable = true;
_label = STRING_COLUMN_LABEL_DUE;
_label = "Due";
}
////////////////////////////////////////////////////////////////////////////////
@ -43,7 +42,7 @@ void ColumnDue::setStyle (const std::string& value)
{
Column::setStyle (value);
if (_style == "countdown" && _label == STRING_COLUMN_LABEL_DUE)
if (_style == "countdown" && _label == "Due")
_label = "Count";
}