mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
l10n: Eliminated STRING_CMD_{G,}HISTORY_*
This commit is contained in:
parent
7646c15f45
commit
4232932663
10 changed files with 20 additions and 227 deletions
|
@ -36,6 +36,13 @@
|
||||||
#include <i18n.h>
|
#include <i18n.h>
|
||||||
#include <Datetime.h>
|
#include <Datetime.h>
|
||||||
|
|
||||||
|
#define STRING_CMD_HISTORY_YEAR "Year"
|
||||||
|
#define STRING_CMD_HISTORY_MONTH "Month"
|
||||||
|
#define STRING_CMD_HISTORY_DAY "Day"
|
||||||
|
#define STRING_CMD_HISTORY_ADDED "Added"
|
||||||
|
#define STRING_CMD_HISTORY_COMP "Completed"
|
||||||
|
#define STRING_CMD_HISTORY_DEL "Deleted"
|
||||||
|
|
||||||
extern Context context;
|
extern Context context;
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
@ -69,7 +76,7 @@ void CmdHistoryBase<HistoryStrategy>::outputGraphical (std::string& output)
|
||||||
|
|
||||||
HistoryStrategy::setupTableDates (view);
|
HistoryStrategy::setupTableDates (view);
|
||||||
|
|
||||||
view.add (STRING_CMD_GHISTORY_NUMBER, true, false); // Fixed.
|
view.add ("Number Added/Completed/Deleted", true, false); // Fixed.
|
||||||
|
|
||||||
Color color_add (context.config.get ("color.history.add"));
|
Color color_add (context.config.get ("color.history.add"));
|
||||||
Color color_done (context.config.get ("color.history.done"));
|
Color color_done (context.config.get ("color.history.done"));
|
||||||
|
@ -168,15 +175,14 @@ void CmdHistoryBase<HistoryStrategy>::outputGraphical (std::string& output)
|
||||||
<< '\n';
|
<< '\n';
|
||||||
|
|
||||||
if (context.color ())
|
if (context.color ())
|
||||||
out << format (STRING_CMD_HISTORY_LEGEND,
|
out << format ("Legend: {1}, {2}, {3}",
|
||||||
color_add.colorize (STRING_CMD_HISTORY_ADDED),
|
color_add.colorize (STRING_CMD_HISTORY_ADDED),
|
||||||
color_done.colorize (STRING_CMD_HISTORY_COMP),
|
color_done.colorize (STRING_CMD_HISTORY_COMP),
|
||||||
color_delete.colorize (STRING_CMD_HISTORY_DEL))
|
color_delete.colorize (STRING_CMD_HISTORY_DEL))
|
||||||
<< optionalBlankLine ()
|
<< optionalBlankLine ()
|
||||||
<< '\n';
|
<< '\n';
|
||||||
else
|
else
|
||||||
out << STRING_CMD_HISTORY_LEGEND_A
|
out << "Legend: + Added, X Completed, - Deleted\n";
|
||||||
<< '\n';
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -200,7 +206,7 @@ void CmdHistoryBase<HistoryStrategy>::outputTabular (std::string& output)
|
||||||
view.add (STRING_CMD_HISTORY_ADDED, false);
|
view.add (STRING_CMD_HISTORY_ADDED, false);
|
||||||
view.add (STRING_CMD_HISTORY_COMP, false);
|
view.add (STRING_CMD_HISTORY_COMP, false);
|
||||||
view.add (STRING_CMD_HISTORY_DEL, false);
|
view.add (STRING_CMD_HISTORY_DEL, false);
|
||||||
view.add (STRING_CMD_HISTORY_NET, false);
|
view.add ("Net", false);
|
||||||
|
|
||||||
auto totalAdded = 0;
|
auto totalAdded = 0;
|
||||||
auto totalCompleted = 0;
|
auto totalCompleted = 0;
|
||||||
|
@ -258,7 +264,7 @@ void CmdHistoryBase<HistoryStrategy>::outputTabular (std::string& output)
|
||||||
if (context.color ())
|
if (context.color ())
|
||||||
row_color = Color (Color::nocolor, Color::nocolor, false, true, false);
|
row_color = Color (Color::nocolor, Color::nocolor, false, true, false);
|
||||||
|
|
||||||
view.set (row, HistoryStrategy::dateFieldCount - 1, STRING_CMD_HISTORY_AVERAGE, row_color);
|
view.set (row, HistoryStrategy::dateFieldCount - 1, "Average", row_color);
|
||||||
view.set (row, HistoryStrategy::dateFieldCount + 0, totalAdded / (view.rows () - 2), row_color);
|
view.set (row, HistoryStrategy::dateFieldCount + 0, totalAdded / (view.rows () - 2), row_color);
|
||||||
view.set (row, HistoryStrategy::dateFieldCount + 1, totalCompleted / (view.rows () - 2), row_color);
|
view.set (row, HistoryStrategy::dateFieldCount + 1, totalCompleted / (view.rows () - 2), row_color);
|
||||||
view.set (row, HistoryStrategy::dateFieldCount + 2, totalDeleted / (view.rows () - 2), row_color);
|
view.set (row, HistoryStrategy::dateFieldCount + 2, totalDeleted / (view.rows () - 2), row_color);
|
||||||
|
@ -316,7 +322,7 @@ public:
|
||||||
|
|
||||||
static constexpr const char* keyword = "history.monthly";
|
static constexpr const char* keyword = "history.monthly";
|
||||||
static constexpr const char* usage = "task <filter> history.monthly";
|
static constexpr const char* usage = "task <filter> history.monthly";
|
||||||
static constexpr const char* description = STRING_CMD_HISTORY_USAGE_M;
|
static constexpr const char* description = "Shows a report of task history, by month";
|
||||||
static constexpr unsigned int dateFieldCount = 2;
|
static constexpr unsigned int dateFieldCount = 2;
|
||||||
static constexpr bool graphical = false;
|
static constexpr bool graphical = false;
|
||||||
static constexpr unsigned int labelWidth = 0; // unused.
|
static constexpr unsigned int labelWidth = 0; // unused.
|
||||||
|
@ -419,7 +425,7 @@ public:
|
||||||
|
|
||||||
static constexpr const char* keyword = "ghistory.monthly";
|
static constexpr const char* keyword = "ghistory.monthly";
|
||||||
static constexpr const char* usage = "task <filter> ghistory.monthly";
|
static constexpr const char* usage = "task <filter> ghistory.monthly";
|
||||||
static constexpr const char* description = STRING_CMD_GHISTORY_USAGE_M;
|
static constexpr const char* description = "Shows a graphical report of task history, by month";
|
||||||
static constexpr unsigned int dateFieldCount = 2;
|
static constexpr unsigned int dateFieldCount = 2;
|
||||||
static constexpr bool graphical = true;
|
static constexpr bool graphical = true;
|
||||||
static constexpr unsigned int labelWidth = 15; // length '2017 September ' = 15
|
static constexpr unsigned int labelWidth = 15; // length '2017 September ' = 15
|
||||||
|
@ -459,7 +465,7 @@ public:
|
||||||
|
|
||||||
static constexpr const char* keyword = "ghistory.annual";
|
static constexpr const char* keyword = "ghistory.annual";
|
||||||
static constexpr const char* usage = "task <filter> ghistory.annual";
|
static constexpr const char* usage = "task <filter> ghistory.annual";
|
||||||
static constexpr const char* description = STRING_CMD_GHISTORY_USAGE_A;
|
static constexpr const char* description = "Shows a graphical report of task history, by year";
|
||||||
static constexpr unsigned int dateFieldCount = 1;
|
static constexpr unsigned int dateFieldCount = 1;
|
||||||
static constexpr bool graphical = true;
|
static constexpr bool graphical = true;
|
||||||
static constexpr unsigned int labelWidth = 5; // length '2017 ' = 5
|
static constexpr unsigned int labelWidth = 5; // length '2017 ' = 5
|
||||||
|
@ -499,7 +505,7 @@ public:
|
||||||
|
|
||||||
static constexpr const char* keyword = "history.annual";
|
static constexpr const char* keyword = "history.annual";
|
||||||
static constexpr const char* usage = "task <filter> history.annual";
|
static constexpr const char* usage = "task <filter> history.annual";
|
||||||
static constexpr const char* description = STRING_CMD_HISTORY_USAGE_A;
|
static constexpr const char* description = "Shows a report of task history, by year";
|
||||||
static constexpr unsigned int dateFieldCount = 1;
|
static constexpr unsigned int dateFieldCount = 1;
|
||||||
static constexpr bool graphical = false;
|
static constexpr bool graphical = false;
|
||||||
static constexpr unsigned int labelWidth = 0; // unused.
|
static constexpr unsigned int labelWidth = 0; // unused.
|
||||||
|
@ -547,7 +553,7 @@ public:
|
||||||
|
|
||||||
static constexpr const char* keyword = "history.daily";
|
static constexpr const char* keyword = "history.daily";
|
||||||
static constexpr const char* usage = "task <filter> history.daily";
|
static constexpr const char* usage = "task <filter> history.daily";
|
||||||
static constexpr const char* description = STRING_CMD_HISTORY_USAGE_D;
|
static constexpr const char* description = "Shows a report of task history, by day";
|
||||||
static constexpr unsigned int dateFieldCount = 3;
|
static constexpr unsigned int dateFieldCount = 3;
|
||||||
static constexpr bool graphical = false;
|
static constexpr bool graphical = false;
|
||||||
static constexpr unsigned int labelWidth = 0; // unused.
|
static constexpr unsigned int labelWidth = 0; // unused.
|
||||||
|
@ -594,7 +600,7 @@ public:
|
||||||
|
|
||||||
static constexpr const char* keyword = "ghistory.daily";
|
static constexpr const char* keyword = "ghistory.daily";
|
||||||
static constexpr const char* usage = "task <filter> ghistory.daily";
|
static constexpr const char* usage = "task <filter> ghistory.daily";
|
||||||
static constexpr const char* description = STRING_CMD_GHISTORY_USAGE_D;
|
static constexpr const char* description = "Shows a graphical report of task history, by day";
|
||||||
static constexpr unsigned int dateFieldCount = 3;
|
static constexpr unsigned int dateFieldCount = 3;
|
||||||
static constexpr bool graphical = true;
|
static constexpr bool graphical = true;
|
||||||
static constexpr unsigned int labelWidth = 19; // length '2017 September Day ' = 19
|
static constexpr unsigned int labelWidth = 19; // length '2017 September Day ' = 19
|
||||||
|
@ -641,7 +647,7 @@ public:
|
||||||
|
|
||||||
static constexpr const char* keyword = "history.weekly";
|
static constexpr const char* keyword = "history.weekly";
|
||||||
static constexpr const char* usage = "task <filter> history.weekly";
|
static constexpr const char* usage = "task <filter> history.weekly";
|
||||||
static constexpr const char* description = STRING_CMD_HISTORY_USAGE_W;
|
static constexpr const char* description = "Shows a report of task history, by week";
|
||||||
static constexpr unsigned int dateFieldCount = 3;
|
static constexpr unsigned int dateFieldCount = 3;
|
||||||
static constexpr bool graphical = false;
|
static constexpr bool graphical = false;
|
||||||
static constexpr unsigned int labelWidth = 0; // unused.
|
static constexpr unsigned int labelWidth = 0; // unused.
|
||||||
|
@ -688,7 +694,7 @@ public:
|
||||||
|
|
||||||
static constexpr const char* keyword = "ghistory.weekly";
|
static constexpr const char* keyword = "ghistory.weekly";
|
||||||
static constexpr const char* usage = "task <filter> ghistory.weekly";
|
static constexpr const char* usage = "task <filter> ghistory.weekly";
|
||||||
static constexpr const char* description = STRING_CMD_GHISTORY_USAGE_W;
|
static constexpr const char* description = "Shows a graphical report of task history, by week";
|
||||||
static constexpr unsigned int dateFieldCount = 3;
|
static constexpr unsigned int dateFieldCount = 3;
|
||||||
static constexpr bool graphical = true;
|
static constexpr bool graphical = true;
|
||||||
static constexpr unsigned int labelWidth = 19; // length '2017 September Day ' = 19
|
static constexpr unsigned int labelWidth = 19; // length '2017 September Day ' = 19
|
||||||
|
|
|
@ -142,28 +142,6 @@
|
||||||
#define STRING_CMD_TAGS_SINGLE "1 Schlagwort"
|
#define STRING_CMD_TAGS_SINGLE "1 Schlagwort"
|
||||||
#define STRING_CMD_TAGS_PLURAL "{1} Schlagworte"
|
#define STRING_CMD_TAGS_PLURAL "{1} Schlagworte"
|
||||||
#define STRING_CMD_TAGS_NO_TAGS "Keine Schlagworte."
|
#define STRING_CMD_TAGS_NO_TAGS "Keine Schlagworte."
|
||||||
#define STRING_CMD_HISTORY_USAGE_D "Zeigt die tägliche Aufgabenentwicklung"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_W "Zeigt die wöchentliche Aufgabenentwicklung"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_M "Zeigt die monatliche Aufgabenentwicklung"
|
|
||||||
#define STRING_CMD_HISTORY_YEAR "Jahr"
|
|
||||||
#define STRING_CMD_HISTORY_MONTH "Monat"
|
|
||||||
#define STRING_CMD_HISTORY_DAY "Tag"
|
|
||||||
#define STRING_CMD_HISTORY_ADDED "Hinzugefügt"
|
|
||||||
#define STRING_CMD_HISTORY_COMP "Erledigt"
|
|
||||||
#define STRING_CMD_HISTORY_DEL "Gelöscht"
|
|
||||||
#define STRING_CMD_HISTORY_NET "Änderung"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_A "Zeigt die jährliche Aufgabenentwicklung"
|
|
||||||
#define STRING_CMD_HISTORY_AVERAGE "Durchschnitt"
|
|
||||||
#define STRING_CMD_HISTORY_LEGEND "Legende: {1}, {2}, {3}"
|
|
||||||
#define STRING_CMD_HISTORY_LEGEND_A "Legende: + hinzugefügt, X erledigt, - gelöscht"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_D "Zeigt die tägliche Aufgabenentwicklung grafisch"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_W "Zeigt die wöchentliche Aufgabenentwicklung grafisch"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_M "Zeigt die monatliche Aufgabenentwicklung grafisch"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_A "Zeigt die jährliche Aufgabenentwicklung grafisch"
|
|
||||||
#define STRING_CMD_GHISTORY_YEAR "Jahr"
|
|
||||||
#define STRING_CMD_GHISTORY_MONTH "Monat"
|
|
||||||
#define STRING_CMD_GHISTORY_MONTH "Tag"
|
|
||||||
#define STRING_CMD_GHISTORY_NUMBER "Anzahl Hinzugefügt/Erledigt/Gelöscht"
|
|
||||||
#define STRING_CMD_UNIQUE_USAGE "Generates lists of unique attribute values"
|
#define STRING_CMD_UNIQUE_USAGE "Generates lists of unique attribute values"
|
||||||
#define STRING_CMD_UNIQUE_MISSING "An attribute must be specified. See 'task _columns'."
|
#define STRING_CMD_UNIQUE_MISSING "An attribute must be specified. See 'task _columns'."
|
||||||
#define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA."
|
#define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA."
|
||||||
|
|
|
@ -139,28 +139,6 @@
|
||||||
#define STRING_CMD_TAGS_SINGLE "1 tag"
|
#define STRING_CMD_TAGS_SINGLE "1 tag"
|
||||||
#define STRING_CMD_TAGS_PLURAL "{1} tags"
|
#define STRING_CMD_TAGS_PLURAL "{1} tags"
|
||||||
#define STRING_CMD_TAGS_NO_TAGS "No tags."
|
#define STRING_CMD_TAGS_NO_TAGS "No tags."
|
||||||
#define STRING_CMD_HISTORY_USAGE_D "Shows a report of task history, by day"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_W "Shows a report of task history, by week"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_M "Shows a report of task history, by month"
|
|
||||||
#define STRING_CMD_HISTORY_YEAR "Year"
|
|
||||||
#define STRING_CMD_HISTORY_MONTH "Month"
|
|
||||||
#define STRING_CMD_HISTORY_DAY "Day"
|
|
||||||
#define STRING_CMD_HISTORY_ADDED "Added"
|
|
||||||
#define STRING_CMD_HISTORY_COMP "Completed"
|
|
||||||
#define STRING_CMD_HISTORY_DEL "Deleted"
|
|
||||||
#define STRING_CMD_HISTORY_NET "Net"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_A "Shows a report of task history, by year"
|
|
||||||
#define STRING_CMD_HISTORY_AVERAGE "Average"
|
|
||||||
#define STRING_CMD_HISTORY_LEGEND "Legend: {1}, {2}, {3}"
|
|
||||||
#define STRING_CMD_HISTORY_LEGEND_A "Legend: + Added, X Completed, - Deleted"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_D "Shows a graphical report of task history, by day"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_W "Shows a graphical report of task history, by week"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_M "Shows a graphical report of task history, by month"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_A "Shows a graphical report of task history, by year"
|
|
||||||
#define STRING_CMD_GHISTORY_YEAR "Year"
|
|
||||||
#define STRING_CMD_GHISTORY_MONTH "Month"
|
|
||||||
#define STRING_CMD_GHISTORY_DAY "Day"
|
|
||||||
#define STRING_CMD_GHISTORY_NUMBER "Number Added/Completed/Deleted"
|
|
||||||
#define STRING_CMD_UNIQUE_USAGE "Generates lists of unique attribute values"
|
#define STRING_CMD_UNIQUE_USAGE "Generates lists of unique attribute values"
|
||||||
#define STRING_CMD_UNIQUE_MISSING "An attribute must be specified. See 'task _columns'."
|
#define STRING_CMD_UNIQUE_MISSING "An attribute must be specified. See 'task _columns'."
|
||||||
#define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA."
|
#define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA."
|
||||||
|
|
|
@ -142,28 +142,6 @@
|
||||||
#define STRING_CMD_TAGS_SINGLE "1 etikedo"
|
#define STRING_CMD_TAGS_SINGLE "1 etikedo"
|
||||||
#define STRING_CMD_TAGS_PLURAL "{1} etikedoj"
|
#define STRING_CMD_TAGS_PLURAL "{1} etikedoj"
|
||||||
#define STRING_CMD_TAGS_NO_TAGS "Nenia etikedo."
|
#define STRING_CMD_TAGS_NO_TAGS "Nenia etikedo."
|
||||||
#define STRING_CMD_HISTORY_USAGE_D "Shows a report of task history, by day"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_W "Shows a report of task history, by week"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_M "Montras raporton de taska historio, per monato"
|
|
||||||
#define STRING_CMD_HISTORY_YEAR "Jaro"
|
|
||||||
#define STRING_CMD_HISTORY_MONTH "Monato"
|
|
||||||
#define STRING_CMD_HISTORY_DAY "Day"
|
|
||||||
#define STRING_CMD_HISTORY_ADDED "Kreitaj"
|
|
||||||
#define STRING_CMD_HISTORY_COMP "Finitaj"
|
|
||||||
#define STRING_CMD_HISTORY_DEL "Viŝitaj"
|
|
||||||
#define STRING_CMD_HISTORY_NET "Neto"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_A "Montras raporton de taska historio, per jaro"
|
|
||||||
#define STRING_CMD_HISTORY_AVERAGE "Meznombro"
|
|
||||||
#define STRING_CMD_HISTORY_LEGEND "Gamo: {1}, {2}, {3}"
|
|
||||||
#define STRING_CMD_HISTORY_LEGEND_A "Gamo: + kreita, X finita, - viŝita"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_D "Shows a graphical report of task history, by day"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_W "Shows a graphical report of task history, by week"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_M "Montras grafikan raporton de taska historio, per monato"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_A "Montras grafikan raporton de taska historio, per jaro"
|
|
||||||
#define STRING_CMD_GHISTORY_YEAR "Jaro"
|
|
||||||
#define STRING_CMD_GHISTORY_MONTH "Monato"
|
|
||||||
#define STRING_CMD_GHISTORY_DAY "Day"
|
|
||||||
#define STRING_CMD_GHISTORY_NUMBER "Nombro Kreitaj/Finitaj/Viŝitaj"
|
|
||||||
#define STRING_CMD_UNIQUE_USAGE "Generates lists of unique attribute values"
|
#define STRING_CMD_UNIQUE_USAGE "Generates lists of unique attribute values"
|
||||||
#define STRING_CMD_UNIQUE_MISSING "An attribute must be specified. See 'task _columns'."
|
#define STRING_CMD_UNIQUE_MISSING "An attribute must be specified. See 'task _columns'."
|
||||||
#define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA."
|
#define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA."
|
||||||
|
|
|
@ -142,33 +142,6 @@
|
||||||
#define STRING_CMD_TAGS_SINGLE "1 marca"
|
#define STRING_CMD_TAGS_SINGLE "1 marca"
|
||||||
#define STRING_CMD_TAGS_PLURAL "{1} marcas"
|
#define STRING_CMD_TAGS_PLURAL "{1} marcas"
|
||||||
#define STRING_CMD_TAGS_NO_TAGS "No hay marcas."
|
#define STRING_CMD_TAGS_NO_TAGS "No hay marcas."
|
||||||
#define STRING_CMD_HISTORY_USAGE_M "Muestra un informe de historia de tareas, por mes"
|
|
||||||
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_D "Shows a report of task history, by day"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_W "Shows a report of task history, by week"
|
|
||||||
#define STRING_CMD_HISTORY_DAY "Day"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_D "Shows a graphical report of task history, by day"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_W "Shows a graphical report of task history, by week"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_D "Shows a graphical report of task history, by day"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_W "Shows a graphical report of task history, by week"
|
|
||||||
#define STRING_CMD_GHISTORY_DAY "Day"
|
|
||||||
|
|
||||||
#define STRING_CMD_HISTORY_YEAR "Año"
|
|
||||||
#define STRING_CMD_HISTORY_MONTH "Mes"
|
|
||||||
#define STRING_CMD_HISTORY_ADDED "Añadidas"
|
|
||||||
#define STRING_CMD_HISTORY_COMP "Completadas"
|
|
||||||
#define STRING_CMD_HISTORY_DEL "Suprimidas"
|
|
||||||
#define STRING_CMD_HISTORY_NET "Netas"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_A "Muestra un informe de historia de tareas, por año"
|
|
||||||
#define STRING_CMD_HISTORY_AVERAGE "Media"
|
|
||||||
#define STRING_CMD_HISTORY_LEGEND "Leyenda: {1}, {2}, {3}"
|
|
||||||
#define STRING_CMD_HISTORY_LEGEND_A "Leyenda: + añadida, X completada, - suprimida"
|
|
||||||
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_M "Muestra un informe gráfico de historia de tareas, por mes"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_A "Muestra un informe gráfico de historia de tareas, por año"
|
|
||||||
#define STRING_CMD_GHISTORY_YEAR "Año"
|
|
||||||
#define STRING_CMD_GHISTORY_MONTH "Mes"
|
|
||||||
#define STRING_CMD_GHISTORY_NUMBER "Número Añadidas/Completadas/Suprimidas"
|
|
||||||
#define STRING_CMD_UNIQUE_USAGE "Genera listas de valores de atributo únicos"
|
#define STRING_CMD_UNIQUE_USAGE "Genera listas de valores de atributo únicos"
|
||||||
#define STRING_CMD_UNIQUE_MISSING "Se debe especificar un atributo. Ver 'task _columns'."
|
#define STRING_CMD_UNIQUE_MISSING "Se debe especificar un atributo. Ver 'task _columns'."
|
||||||
#define STRING_CMD_UNIQUE_VALID "Debe especificar un atributo o un UDA."
|
#define STRING_CMD_UNIQUE_VALID "Debe especificar un atributo o un UDA."
|
||||||
|
|
|
@ -142,30 +142,6 @@
|
||||||
#define STRING_CMD_TAGS_SINGLE "1 étiquette"
|
#define STRING_CMD_TAGS_SINGLE "1 étiquette"
|
||||||
#define STRING_CMD_TAGS_PLURAL "{1} étiquettes"
|
#define STRING_CMD_TAGS_PLURAL "{1} étiquettes"
|
||||||
#define STRING_CMD_TAGS_NO_TAGS "Pas d'étiquettes."
|
#define STRING_CMD_TAGS_NO_TAGS "Pas d'étiquettes."
|
||||||
#define STRING_CMD_HISTORY_USAGE_D "Shows a report of task history, by day"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_W "Shows a report of task history, by week"
|
|
||||||
#define STRING_CMD_HISTORY_DAY "Day"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_D "Shows a graphical report of task history, by day"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_W "Shows a graphical report of task history, by week"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_D "Shows a graphical report of task history, by day"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_W "Shows a graphical report of task history, by week"
|
|
||||||
#define STRING_CMD_GHISTORY_DAY "Day"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_M "Shows a report of task history, by month"
|
|
||||||
#define STRING_CMD_HISTORY_YEAR "Année"
|
|
||||||
#define STRING_CMD_HISTORY_MONTH "Mois"
|
|
||||||
#define STRING_CMD_HISTORY_ADDED "Ajoutées"
|
|
||||||
#define STRING_CMD_HISTORY_COMP "Achevées"
|
|
||||||
#define STRING_CMD_HISTORY_DEL "Supprimées"
|
|
||||||
#define STRING_CMD_HISTORY_NET "Net"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_A "Montre un rapport de l'histoire des tâches, par an"
|
|
||||||
#define STRING_CMD_HISTORY_AVERAGE "Moyenne"
|
|
||||||
#define STRING_CMD_HISTORY_LEGEND "Légende : {1}, {2}, {3}"
|
|
||||||
#define STRING_CMD_HISTORY_LEGEND_A "Legend: + added, X completed, - deleted"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_M "Shows a graphical report of task history, by month"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_A "Montre un rapport graphique de l'histoire des tâches, par an"
|
|
||||||
#define STRING_CMD_GHISTORY_YEAR "An"
|
|
||||||
#define STRING_CMD_GHISTORY_MONTH "Mois"
|
|
||||||
#define STRING_CMD_GHISTORY_NUMBER "Number Added/Completed/Deleted"
|
|
||||||
#define STRING_CMD_UNIQUE_USAGE "Generates lists of unique attribute values"
|
#define STRING_CMD_UNIQUE_USAGE "Generates lists of unique attribute values"
|
||||||
#define STRING_CMD_UNIQUE_MISSING "An attribute must be specified. See 'task _columns'."
|
#define STRING_CMD_UNIQUE_MISSING "An attribute must be specified. See 'task _columns'."
|
||||||
#define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA."
|
#define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA."
|
||||||
|
|
|
@ -141,30 +141,6 @@
|
||||||
#define STRING_CMD_TAGS_SINGLE "1 tag"
|
#define STRING_CMD_TAGS_SINGLE "1 tag"
|
||||||
#define STRING_CMD_TAGS_PLURAL "{1} tag"
|
#define STRING_CMD_TAGS_PLURAL "{1} tag"
|
||||||
#define STRING_CMD_TAGS_NO_TAGS "Nessun tag."
|
#define STRING_CMD_TAGS_NO_TAGS "Nessun tag."
|
||||||
#define STRING_CMD_HISTORY_USAGE_D "Shows a report of task history, by day"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_W "Shows a report of task history, by week"
|
|
||||||
#define STRING_CMD_HISTORY_DAY "Day"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_D "Shows a graphical report of task history, by day"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_W "Shows a graphical report of task history, by week"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_D "Shows a graphical report of task history, by day"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_W "Shows a graphical report of task history, by week"
|
|
||||||
#define STRING_CMD_GHISTORY_DAY "Day"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_M "Mostra un report dello storico dei task, per mese"
|
|
||||||
#define STRING_CMD_HISTORY_YEAR "Anno"
|
|
||||||
#define STRING_CMD_HISTORY_MONTH "Mese"
|
|
||||||
#define STRING_CMD_HISTORY_ADDED "Aggiunto"
|
|
||||||
#define STRING_CMD_HISTORY_COMP "Completato"
|
|
||||||
#define STRING_CMD_HISTORY_DEL "Cancellato"
|
|
||||||
#define STRING_CMD_HISTORY_NET "Bilancio"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_A "Mostra un report dello storico dei task, per anno"
|
|
||||||
#define STRING_CMD_HISTORY_AVERAGE "Media"
|
|
||||||
#define STRING_CMD_HISTORY_LEGEND "Legenda: {1}, {2}, {3}"
|
|
||||||
#define STRING_CMD_HISTORY_LEGEND_A "Legenda: + aggiunto, X completato, - cancellato"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_M "Mostra un report grafico dello storico dei task, per mese"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_A "Mostra un report grafico dello storico dei task, per anno"
|
|
||||||
#define STRING_CMD_GHISTORY_YEAR "Anno"
|
|
||||||
#define STRING_CMD_GHISTORY_MONTH "Mese"
|
|
||||||
#define STRING_CMD_GHISTORY_NUMBER "Aggiunti/Completati/Cancellati"
|
|
||||||
#define STRING_CMD_UNIQUE_USAGE "Generates lists of unique attribute values"
|
#define STRING_CMD_UNIQUE_USAGE "Generates lists of unique attribute values"
|
||||||
#define STRING_CMD_UNIQUE_MISSING "An attribute must be specified. See 'task _columns'."
|
#define STRING_CMD_UNIQUE_MISSING "An attribute must be specified. See 'task _columns'."
|
||||||
#define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA."
|
#define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA."
|
||||||
|
|
|
@ -142,30 +142,6 @@
|
||||||
#define STRING_CMD_TAGS_SINGLE "1 つのタグ"
|
#define STRING_CMD_TAGS_SINGLE "1 つのタグ"
|
||||||
#define STRING_CMD_TAGS_PLURAL "{1} 個のタグ"
|
#define STRING_CMD_TAGS_PLURAL "{1} 個のタグ"
|
||||||
#define STRING_CMD_TAGS_NO_TAGS "タグがない。"
|
#define STRING_CMD_TAGS_NO_TAGS "タグがない。"
|
||||||
#define STRING_CMD_HISTORY_USAGE_D "Shows a report of task history, by day"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_W "Shows a report of task history, by week"
|
|
||||||
#define STRING_CMD_HISTORY_DAY "Day"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_D "Shows a graphical report of task history, by day"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_W "Shows a graphical report of task history, by week"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_D "Shows a graphical report of task history, by day"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_W "Shows a graphical report of task history, by week"
|
|
||||||
#define STRING_CMD_GHISTORY_DAY "Day"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_M "Shows a report of task history, by month"
|
|
||||||
#define STRING_CMD_HISTORY_YEAR "Year"
|
|
||||||
#define STRING_CMD_HISTORY_MONTH "Month"
|
|
||||||
#define STRING_CMD_HISTORY_ADDED "Added"
|
|
||||||
#define STRING_CMD_HISTORY_COMP "Completed"
|
|
||||||
#define STRING_CMD_HISTORY_DEL "Deleted"
|
|
||||||
#define STRING_CMD_HISTORY_NET "Net"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_A "Shows a report of task history, by year"
|
|
||||||
#define STRING_CMD_HISTORY_AVERAGE "Average"
|
|
||||||
#define STRING_CMD_HISTORY_LEGEND "Legend: {1}, {2}, {3}"
|
|
||||||
#define STRING_CMD_HISTORY_LEGEND_A "Legend: + Added, X Completed, - Deleted"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_M "Shows a graphical report of task history, by month"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_A "Shows a graphical report of task history, by year"
|
|
||||||
#define STRING_CMD_GHISTORY_YEAR "Year"
|
|
||||||
#define STRING_CMD_GHISTORY_MONTH "Month"
|
|
||||||
#define STRING_CMD_GHISTORY_NUMBER "追加/完了/削除されたタスク数"
|
|
||||||
#define STRING_CMD_UNIQUE_USAGE "Generates lists of unique attribute values"
|
#define STRING_CMD_UNIQUE_USAGE "Generates lists of unique attribute values"
|
||||||
#define STRING_CMD_UNIQUE_MISSING "An attribute must be specified. See 'task _columns'."
|
#define STRING_CMD_UNIQUE_MISSING "An attribute must be specified. See 'task _columns'."
|
||||||
#define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA."
|
#define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA."
|
||||||
|
|
|
@ -142,30 +142,6 @@
|
||||||
#define STRING_CMD_TAGS_SINGLE "1 tag"
|
#define STRING_CMD_TAGS_SINGLE "1 tag"
|
||||||
#define STRING_CMD_TAGS_PLURAL "{1} tagów"
|
#define STRING_CMD_TAGS_PLURAL "{1} tagów"
|
||||||
#define STRING_CMD_TAGS_NO_TAGS "Brak tagów."
|
#define STRING_CMD_TAGS_NO_TAGS "Brak tagów."
|
||||||
#define STRING_CMD_HISTORY_USAGE_D "Shows a report of task history, by day"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_W "Shows a report of task history, by week"
|
|
||||||
#define STRING_CMD_HISTORY_DAY "Day"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_D "Shows a graphical report of task history, by day"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_W "Shows a graphical report of task history, by week"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_D "Shows a graphical report of task history, by day"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_W "Shows a graphical report of task history, by week"
|
|
||||||
#define STRING_CMD_GHISTORY_DAY "Day"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_M "Pokazuje raport historii zadań w ujęciu miesięcznym"
|
|
||||||
#define STRING_CMD_HISTORY_YEAR "Rok"
|
|
||||||
#define STRING_CMD_HISTORY_MONTH "Miesiąc"
|
|
||||||
#define STRING_CMD_HISTORY_ADDED "Dodane"
|
|
||||||
#define STRING_CMD_HISTORY_COMP "Ukończone"
|
|
||||||
#define STRING_CMD_HISTORY_DEL "Usunięte"
|
|
||||||
#define STRING_CMD_HISTORY_NET "Net"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_A "Pokazuje raport historii zadań w ujęciu rocznym"
|
|
||||||
#define STRING_CMD_HISTORY_AVERAGE "Średnia"
|
|
||||||
#define STRING_CMD_HISTORY_LEGEND "Legenda: {1}, {2}, {3}"
|
|
||||||
#define STRING_CMD_HISTORY_LEGEND_A "Legenda: + dodane, X ukończone, - usunięte"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_M "Pokazuje graficzny raport z historii zadań, w miesięcznych podsumowaniach"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_A "Pokazuje graficzny raport z historii zadań, w rocznych podsumowaniach"
|
|
||||||
#define STRING_CMD_GHISTORY_YEAR "Rok"
|
|
||||||
#define STRING_CMD_GHISTORY_MONTH "Miesiąc"
|
|
||||||
#define STRING_CMD_GHISTORY_NUMBER "Liczba Dodanych/Ukończonych/Usuniętych"
|
|
||||||
#define STRING_CMD_UNIQUE_USAGE "Generates lists of unique attribute values"
|
#define STRING_CMD_UNIQUE_USAGE "Generates lists of unique attribute values"
|
||||||
#define STRING_CMD_UNIQUE_MISSING "An attribute must be specified. See 'task _columns'."
|
#define STRING_CMD_UNIQUE_MISSING "An attribute must be specified. See 'task _columns'."
|
||||||
#define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA."
|
#define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA."
|
||||||
|
|
|
@ -142,30 +142,6 @@
|
||||||
#define STRING_CMD_TAGS_SINGLE "1 marca"
|
#define STRING_CMD_TAGS_SINGLE "1 marca"
|
||||||
#define STRING_CMD_TAGS_PLURAL "{1} marcas"
|
#define STRING_CMD_TAGS_PLURAL "{1} marcas"
|
||||||
#define STRING_CMD_TAGS_NO_TAGS "Sem marcas."
|
#define STRING_CMD_TAGS_NO_TAGS "Sem marcas."
|
||||||
#define STRING_CMD_HISTORY_USAGE_D "Shows a report of task history, by day"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_W "Shows a report of task history, by week"
|
|
||||||
#define STRING_CMD_HISTORY_DAY "Day"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_D "Shows a graphical report of task history, by day"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_W "Shows a graphical report of task history, by week"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_D "Shows a graphical report of task history, by day"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_W "Shows a graphical report of task history, by week"
|
|
||||||
#define STRING_CMD_GHISTORY_DAY "Day"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_M "Exibe um relatório mensal do histórico de tarefas"
|
|
||||||
#define STRING_CMD_HISTORY_YEAR "Ano"
|
|
||||||
#define STRING_CMD_HISTORY_MONTH "Mês"
|
|
||||||
#define STRING_CMD_HISTORY_ADDED "Adicionada"
|
|
||||||
#define STRING_CMD_HISTORY_COMP "Concluída"
|
|
||||||
#define STRING_CMD_HISTORY_DEL "Eliminada"
|
|
||||||
#define STRING_CMD_HISTORY_NET "Saldo"
|
|
||||||
#define STRING_CMD_HISTORY_USAGE_A "Exibe um relatório anual do histórico de tarefas"
|
|
||||||
#define STRING_CMD_HISTORY_AVERAGE "Média"
|
|
||||||
#define STRING_CMD_HISTORY_LEGEND "Legenda: {1}, {2}, {3}"
|
|
||||||
#define STRING_CMD_HISTORY_LEGEND_A "Legenda: + adicionada, X concluída, - eliminada"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_M "Exibe um relatório gráfico mensal do histórico de tarefas"
|
|
||||||
#define STRING_CMD_GHISTORY_USAGE_A "Exibe um relatório gráfico anual do histórico de tarefas"
|
|
||||||
#define STRING_CMD_GHISTORY_YEAR "Ano"
|
|
||||||
#define STRING_CMD_GHISTORY_MONTH "Mês"
|
|
||||||
#define STRING_CMD_GHISTORY_NUMBER "Número de Adicionadas/Concluídas/Eliminadas"
|
|
||||||
#define STRING_CMD_UNIQUE_USAGE "Generates lists of unique attribute values"
|
#define STRING_CMD_UNIQUE_USAGE "Generates lists of unique attribute values"
|
||||||
#define STRING_CMD_UNIQUE_MISSING "An attribute must be specified. See 'task _columns'."
|
#define STRING_CMD_UNIQUE_MISSING "An attribute must be specified. See 'task _columns'."
|
||||||
#define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA."
|
#define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA."
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue