mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
l10n: Eliminated STRING_COLUMN_LABEL_ADDED, STRING_COLUMN_LABEL_AGE
This commit is contained in:
parent
4819584714
commit
a7b915299a
10 changed files with 3 additions and 22 deletions
|
@ -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";
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue