diff --git a/src/commands/CmdHistory.cpp b/src/commands/CmdHistory.cpp index 7d281a90e..89f3a558e 100644 --- a/src/commands/CmdHistory.cpp +++ b/src/commands/CmdHistory.cpp @@ -36,6 +36,13 @@ #include #include +#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; //////////////////////////////////////////////////////////////////////////////// @@ -69,7 +76,7 @@ void CmdHistoryBase::outputGraphical (std::string& output) 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_done (context.config.get ("color.history.done")); @@ -168,15 +175,14 @@ void CmdHistoryBase::outputGraphical (std::string& output) << '\n'; if (context.color ()) - out << format (STRING_CMD_HISTORY_LEGEND, + out << format ("Legend: {1}, {2}, {3}", color_add.colorize (STRING_CMD_HISTORY_ADDED), color_done.colorize (STRING_CMD_HISTORY_COMP), color_delete.colorize (STRING_CMD_HISTORY_DEL)) << optionalBlankLine () << '\n'; else - out << STRING_CMD_HISTORY_LEGEND_A - << '\n'; + out << "Legend: + Added, X Completed, - Deleted\n"; } else { @@ -200,7 +206,7 @@ void CmdHistoryBase::outputTabular (std::string& output) view.add (STRING_CMD_HISTORY_ADDED, false); view.add (STRING_CMD_HISTORY_COMP, false); view.add (STRING_CMD_HISTORY_DEL, false); - view.add (STRING_CMD_HISTORY_NET, false); + view.add ("Net", false); auto totalAdded = 0; auto totalCompleted = 0; @@ -258,7 +264,7 @@ void CmdHistoryBase::outputTabular (std::string& output) if (context.color ()) 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 + 1, totalCompleted / (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* usage = "task 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 bool graphical = false; static constexpr unsigned int labelWidth = 0; // unused. @@ -419,7 +425,7 @@ public: static constexpr const char* keyword = "ghistory.monthly"; static constexpr const char* usage = "task 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 bool graphical = true; 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* usage = "task 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 bool graphical = true; 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* usage = "task 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 bool graphical = false; static constexpr unsigned int labelWidth = 0; // unused. @@ -547,7 +553,7 @@ public: static constexpr const char* keyword = "history.daily"; static constexpr const char* usage = "task 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 bool graphical = false; static constexpr unsigned int labelWidth = 0; // unused. @@ -594,7 +600,7 @@ public: static constexpr const char* keyword = "ghistory.daily"; static constexpr const char* usage = "task 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 bool graphical = true; 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* usage = "task 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 bool graphical = false; static constexpr unsigned int labelWidth = 0; // unused. @@ -688,7 +694,7 @@ public: static constexpr const char* keyword = "ghistory.weekly"; static constexpr const char* usage = "task 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 bool graphical = true; static constexpr unsigned int labelWidth = 19; // length '2017 September Day ' = 19 diff --git a/src/l10n/deu-DEU.h b/src/l10n/deu-DEU.h index 6f9b277c4..416833612 100644 --- a/src/l10n/deu-DEU.h +++ b/src/l10n/deu-DEU.h @@ -142,28 +142,6 @@ #define STRING_CMD_TAGS_SINGLE "1 Schlagwort" #define STRING_CMD_TAGS_PLURAL "{1} 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_MISSING "An attribute must be specified. See 'task _columns'." #define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA." diff --git a/src/l10n/eng-USA.h b/src/l10n/eng-USA.h index 3b9cc2778..84352264b 100644 --- a/src/l10n/eng-USA.h +++ b/src/l10n/eng-USA.h @@ -139,28 +139,6 @@ #define STRING_CMD_TAGS_SINGLE "1 tag" #define STRING_CMD_TAGS_PLURAL "{1} 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_MISSING "An attribute must be specified. See 'task _columns'." #define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA." diff --git a/src/l10n/epo-RUS.h b/src/l10n/epo-RUS.h index 5f40ca8b2..c9ff3d580 100644 --- a/src/l10n/epo-RUS.h +++ b/src/l10n/epo-RUS.h @@ -142,28 +142,6 @@ #define STRING_CMD_TAGS_SINGLE "1 etikedo" #define STRING_CMD_TAGS_PLURAL "{1} etikedoj" #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_MISSING "An attribute must be specified. See 'task _columns'." #define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA." diff --git a/src/l10n/esp-ESP.h b/src/l10n/esp-ESP.h index 465250783..a02df6abc 100644 --- a/src/l10n/esp-ESP.h +++ b/src/l10n/esp-ESP.h @@ -142,33 +142,6 @@ #define STRING_CMD_TAGS_SINGLE "1 marca" #define STRING_CMD_TAGS_PLURAL "{1} 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_MISSING "Se debe especificar un atributo. Ver 'task _columns'." #define STRING_CMD_UNIQUE_VALID "Debe especificar un atributo o un UDA." diff --git a/src/l10n/fra-FRA.h b/src/l10n/fra-FRA.h index 5a91850c9..7eb97afff 100644 --- a/src/l10n/fra-FRA.h +++ b/src/l10n/fra-FRA.h @@ -142,30 +142,6 @@ #define STRING_CMD_TAGS_SINGLE "1 étiquette" #define STRING_CMD_TAGS_PLURAL "{1} é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_MISSING "An attribute must be specified. See 'task _columns'." #define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA." diff --git a/src/l10n/ita-ITA.h b/src/l10n/ita-ITA.h index a23c950ef..7a94ce904 100644 --- a/src/l10n/ita-ITA.h +++ b/src/l10n/ita-ITA.h @@ -141,30 +141,6 @@ #define STRING_CMD_TAGS_SINGLE "1 tag" #define STRING_CMD_TAGS_PLURAL "{1} 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_MISSING "An attribute must be specified. See 'task _columns'." #define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA." diff --git a/src/l10n/jpn-JPN.h b/src/l10n/jpn-JPN.h index 25f1a6de5..20f0cfe79 100644 --- a/src/l10n/jpn-JPN.h +++ b/src/l10n/jpn-JPN.h @@ -142,30 +142,6 @@ #define STRING_CMD_TAGS_SINGLE "1 つのタグ" #define STRING_CMD_TAGS_PLURAL "{1} 個のタグ" #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_MISSING "An attribute must be specified. See 'task _columns'." #define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA." diff --git a/src/l10n/pol-POL.h b/src/l10n/pol-POL.h index 55eedb64e..e84b37c71 100644 --- a/src/l10n/pol-POL.h +++ b/src/l10n/pol-POL.h @@ -142,30 +142,6 @@ #define STRING_CMD_TAGS_SINGLE "1 tag" #define STRING_CMD_TAGS_PLURAL "{1} 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_MISSING "An attribute must be specified. See 'task _columns'." #define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA." diff --git a/src/l10n/por-PRT.h b/src/l10n/por-PRT.h index 7712d6458..7044ed102 100644 --- a/src/l10n/por-PRT.h +++ b/src/l10n/por-PRT.h @@ -142,30 +142,6 @@ #define STRING_CMD_TAGS_SINGLE "1 marca" #define STRING_CMD_TAGS_PLURAL "{1} 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_MISSING "An attribute must be specified. See 'task _columns'." #define STRING_CMD_UNIQUE_VALID "You must specify an attribute or UDA."