mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
I18N
- Localized TDB2. - Removed old debugging comments. - Formatting fix in CmdBurndown.
This commit is contained in:
parent
48796c5364
commit
4470a5f156
3 changed files with 86 additions and 107 deletions
|
@ -959,9 +959,7 @@ int CmdBurndownMonthly::execute (std::string& output)
|
|||
// Use any filter as a title.
|
||||
if (context.a3.size () > 2)
|
||||
{
|
||||
std::string combined = "("
|
||||
+ context.a3.extract_filter ().combine ()
|
||||
+ ")";
|
||||
std::string combined = "(" + context.a3.extract_filter ().combine () + ")";
|
||||
chart.description (combined);
|
||||
}
|
||||
|
||||
|
@ -997,9 +995,7 @@ int CmdBurndownWeekly::execute (std::string& output)
|
|||
// Use any filter as a title.
|
||||
if (context.a3.size () > 2)
|
||||
{
|
||||
std::string combined = "("
|
||||
+ context.a3.extract_filter ().combine ()
|
||||
+ ")";
|
||||
std::string combined = "(" + context.a3.extract_filter ().combine () + ")";
|
||||
chart.description (combined);
|
||||
}
|
||||
|
||||
|
@ -1035,9 +1031,7 @@ int CmdBurndownDaily::execute (std::string& output)
|
|||
// Use any filter as a title.
|
||||
if (context.a3.size () > 2)
|
||||
{
|
||||
std::string combined = "("
|
||||
+ context.a3.extract_filter ().combine ()
|
||||
+ ")";
|
||||
std::string combined = "(" + context.a3.extract_filter ().combine () + ")";
|
||||
chart.description (combined);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue