l10n: Eliminated STRING_COLUMN_LABEL_ADDED, STRING_COLUMN_LABEL_AGE

This commit is contained in:
Paul Beckingham 2018-01-21 19:25:10 -05:00
parent 4819584714
commit a7b915299a
10 changed files with 3 additions and 22 deletions

View file

@ -26,14 +26,13 @@
#include <cmake.h>
#include <ColEntry.h>
#include <i18n.h>
////////////////////////////////////////////////////////////////////////////////
ColumnEntry::ColumnEntry ()
{
_name = "entry";
_modifiable = true;
_label = STRING_COLUMN_LABEL_ADDED;
_label = "Added";
}
////////////////////////////////////////////////////////////////////////////////
@ -44,8 +43,8 @@ void ColumnEntry::setStyle (const std::string& value)
Column::setStyle (value);
if (_style == "age" &&
_label == STRING_COLUMN_LABEL_ADDED)
_label = STRING_COLUMN_LABEL_AGE;
_label == "Added")
_label = "Age";
}
////////////////////////////////////////////////////////////////////////////////