mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-09 18:50:39 +02:00
l10n: Eliminated STRING_CMD_CONTEXT_*
This commit is contained in:
parent
f6b14adb30
commit
be72058b31
10 changed files with 20 additions and 201 deletions
|
@ -32,7 +32,6 @@
|
|||
#include <Filter.h>
|
||||
#include <sstream>
|
||||
#include <algorithm>
|
||||
#include <i18n.h>
|
||||
#include <format.h>
|
||||
#include <shared.h>
|
||||
#include <util.h>
|
||||
|
@ -44,7 +43,7 @@ CmdContext::CmdContext ()
|
|||
{
|
||||
_keyword = "context";
|
||||
_usage = "task context [<name> | <subcommand>]";
|
||||
_description = STRING_CMD_CONTEXT_USAGE;
|
||||
_description = "Set and define contexts (default filters)";
|
||||
_read_only = true;
|
||||
_displays_id = false;
|
||||
_needs_gc = false;
|
||||
|
@ -140,7 +139,7 @@ void CmdContext::defineContext (const std::vector <std::string>& words, std::str
|
|||
// Make sure nobody creates a context with name 'list', 'none' or 'show'
|
||||
if (words[1] == "none" or words[1] == "list" or words[1] == "show")
|
||||
{
|
||||
throw format (STRING_CMD_CONTEXT_DEF_INVLD, words[1]);
|
||||
throw format ("The name '{1}' is reserved and not allowed to use as a context name.", words[1]);
|
||||
}
|
||||
|
||||
// Check if the value is a proper filter by filtering current pending.data
|
||||
|
@ -156,25 +155,25 @@ void CmdContext::defineContext (const std::vector <std::string>& words, std::str
|
|||
}
|
||||
catch (std::string exception)
|
||||
{
|
||||
throw format (STRING_CMD_CONTEXT_DEF_ABRT2, exception);
|
||||
throw format ("Filter validation failed: {1}", exception);
|
||||
}
|
||||
|
||||
// Make user explicitly confirm filters that are matching no pending tasks
|
||||
if (filtered.size () == 0)
|
||||
if (confirmation &&
|
||||
! confirm (format (STRING_CMD_CONTEXT_DEF_CONF, value)))
|
||||
throw std::string (STRING_CMD_CONTEXT_DEF_ABRT);
|
||||
! confirm (format ("The filter '{1}' matches 0 pending tasks. Do you wish to continue?", value)))
|
||||
throw std::string ("Context definition aborted.");
|
||||
|
||||
// Set context definition config variable
|
||||
bool success = CmdConfig::setConfigVariable (name, value, confirmation);
|
||||
|
||||
if (!success)
|
||||
throw format (STRING_CMD_CONTEXT_DEF_FAIL, words[1]);
|
||||
throw format ("Context '{1}' not defined.", words[1]);
|
||||
|
||||
out << format (STRING_CMD_CONTEXT_DEF_SUCC, words[1]) << '\n';
|
||||
out << format ("Context '{1}' defined. Use 'task context {1}' to activate.\n", words[1]);
|
||||
}
|
||||
else
|
||||
throw std::string (STRING_CMD_CONTEXT_DEF_USAG);
|
||||
throw std::string ("Both context name and its definition must be provided.");
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -203,12 +202,12 @@ void CmdContext::deleteContext (const std::vector <std::string>& words, std::str
|
|||
|
||||
// Output feedback
|
||||
if (rc != 0)
|
||||
throw format (STRING_CMD_CONTEXT_DEL_FAIL, words[1]);
|
||||
throw format ("Context '{1}' not deleted.", words[1]);
|
||||
|
||||
out << format (STRING_CMD_CONTEXT_DEL_SUCC, words[1]) << '\n';
|
||||
out << format ("Context '{1}' deleted.\n", words[1]);
|
||||
}
|
||||
else
|
||||
throw std::string(STRING_CMD_CONTEXT_DEL_USAG);
|
||||
throw std::string("Context name needs to be specified.");
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -252,7 +251,7 @@ void CmdContext::listContexts (std::stringstream& out)
|
|||
<< optionalBlankLine ();
|
||||
}
|
||||
else
|
||||
throw std::string (STRING_CMD_CONTEXT_LIST_EMPT);
|
||||
throw std::string ("No contexts defined.");
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -273,16 +272,16 @@ void CmdContext::setContext (const std::vector <std::string>& words, std::string
|
|||
|
||||
// Check that the specified context is defined
|
||||
if (std::find (contexts.begin (), contexts.end (), value) == contexts.end ())
|
||||
throw format (STRING_CMD_CONTEXT_SET_NFOU, value);
|
||||
throw format ("Context '{1}' not found.", value);
|
||||
|
||||
// Set the active context.
|
||||
// Should always succeed, as we do not require confirmation.
|
||||
bool success = CmdConfig::setConfigVariable ("context", value, false);
|
||||
|
||||
if (! success)
|
||||
throw format (STRING_CMD_CONTEXT_SET_FAIL, value);
|
||||
throw format ("Context '{1}' not applied.", value);
|
||||
|
||||
out << format (STRING_CMD_CONTEXT_SET_SUCC, value) << '\n';
|
||||
out << format ("Context '{1}' set. Use 'task context none' to remove.\n", value);
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -298,11 +297,11 @@ void CmdContext::showContext (std::stringstream& out)
|
|||
auto currentContext = context.config.get ("context");
|
||||
|
||||
if (currentContext == "")
|
||||
out << STRING_CMD_CONTEXT_SHOW_EMPT << '\n';
|
||||
out << "No context is currently applied.\n";
|
||||
else
|
||||
{
|
||||
std::string currentFilter = context.config.get ("context." + currentContext);
|
||||
out << format (STRING_CMD_CONTEXT_SHOW, currentContext, currentFilter) << '\n';
|
||||
out << format ("Context '{1}' with filter '{2}' is currently applied.\n", currentContext, currentFilter);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -319,9 +318,9 @@ void CmdContext::showContext (std::stringstream& out)
|
|||
void CmdContext::unsetContext (std::stringstream& out)
|
||||
{
|
||||
if (CmdConfig::unsetConfigVariable ("context", false))
|
||||
throw std::string(STRING_CMD_CONTEXT_NON_FAIL);
|
||||
throw std::string ("Context not unset.");
|
||||
|
||||
out << STRING_CMD_CONTEXT_NON_SUCC << '\n';
|
||||
out << "Context unset.\n";
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -329,7 +328,7 @@ CmdCompletionContext::CmdCompletionContext ()
|
|||
{
|
||||
_keyword = "_context";
|
||||
_usage = "task _context";
|
||||
_description = STRING_CMD_HCONTEXT_USAGE;
|
||||
_description = "Lists all supported contexts, for completion purposes";
|
||||
_read_only = true;
|
||||
_displays_id = false;
|
||||
_needs_gc = false;
|
||||
|
|
|
@ -203,26 +203,6 @@
|
|||
#define STRING_CMD_CONFIG_FILE_MOD "Konfigurationsdatei {1} verändert."
|
||||
#define STRING_CMD_CONFIG_NO_NAME "Geben Sie den Wert der zu ändernden Option an."
|
||||
#define STRING_CMD_HCONFIG_USAGE "Zeigt alle unterstützten Konfigurations-Optionen zur AUtovervollständigung"
|
||||
#define STRING_CMD_CONTEXT_USAGE "Set and define contexts (default filters)"
|
||||
#define STRING_CMD_CONTEXT_DEF_SUCC "Context '{1}' defined. Use 'task context {1}' to activate."
|
||||
#define STRING_CMD_CONTEXT_DEF_FAIL "Context '{1}' not defined."
|
||||
#define STRING_CMD_CONTEXT_DEF_USAG "Both context name and its definition must be provided."
|
||||
#define STRING_CMD_CONTEXT_DEF_ABRT "Context definiton aborted."
|
||||
#define STRING_CMD_CONTEXT_DEF_ABRT2 "Filter validation failed: {1}"
|
||||
#define STRING_CMD_CONTEXT_DEF_CONF "The filter '{1}' matches 0 pending tasks. Do you wish to continue?"
|
||||
#define STRING_CMD_CONTEXT_DEF_INVLD "The name '{1}' is reserved and not allowed to use as a context name."
|
||||
#define STRING_CMD_CONTEXT_DEL_SUCC "Context '{1}' deleted."
|
||||
#define STRING_CMD_CONTEXT_DEL_FAIL "Context '{1}' not deleted."
|
||||
#define STRING_CMD_CONTEXT_DEL_USAG "Context name needs to be specified."
|
||||
#define STRING_CMD_CONTEXT_LIST_EMPT "No contexts defined."
|
||||
#define STRING_CMD_CONTEXT_SET_NFOU "Context '{1}' not found."
|
||||
#define STRING_CMD_CONTEXT_SET_SUCC "Context '{1}' set. Use 'task context none' to remove."
|
||||
#define STRING_CMD_CONTEXT_SET_FAIL "Context '{1}' not applied."
|
||||
#define STRING_CMD_CONTEXT_SHOW_EMPT "No context is currently applied."
|
||||
#define STRING_CMD_CONTEXT_SHOW "Context '{1}' with filter '{2}' is currently applied."
|
||||
#define STRING_CMD_CONTEXT_NON_SUCC "Context unset."
|
||||
#define STRING_CMD_CONTEXT_NON_FAIL "Context not unset."
|
||||
#define STRING_CMD_HCONTEXT_USAGE "Lists all supported contexts, for completion purposes"
|
||||
#define STRING_CMD_CUSTOM_MISMATCH "Die Anzahl von Spalten und Beschriftungen für Report '{1}' unterscheidet sich."
|
||||
#define STRING_CMD_CUSTOM_SHOWN "{1} gezeigt"
|
||||
#define STRING_CMD_CUSTOM_COUNT "1 Aufgabe"
|
||||
|
|
|
@ -200,26 +200,6 @@
|
|||
#define STRING_CMD_CONFIG_FILE_MOD "Config file {1} modified."
|
||||
#define STRING_CMD_CONFIG_NO_NAME "Specify the name of a config variable to modify."
|
||||
#define STRING_CMD_HCONFIG_USAGE "Lists all supported configuration variables, for completion purposes"
|
||||
#define STRING_CMD_CONTEXT_USAGE "Set and define contexts (default filters)"
|
||||
#define STRING_CMD_CONTEXT_DEF_SUCC "Context '{1}' defined. Use 'task context {1}' to activate."
|
||||
#define STRING_CMD_CONTEXT_DEF_FAIL "Context '{1}' not defined."
|
||||
#define STRING_CMD_CONTEXT_DEF_USAG "Both context name and its definition must be provided."
|
||||
#define STRING_CMD_CONTEXT_DEF_ABRT "Context definition aborted."
|
||||
#define STRING_CMD_CONTEXT_DEF_ABRT2 "Filter validation failed: {1}"
|
||||
#define STRING_CMD_CONTEXT_DEF_CONF "The filter '{1}' matches 0 pending tasks. Do you wish to continue?"
|
||||
#define STRING_CMD_CONTEXT_DEF_INVLD "The name '{1}' is reserved and not allowed to use as a context name."
|
||||
#define STRING_CMD_CONTEXT_DEL_SUCC "Context '{1}' deleted."
|
||||
#define STRING_CMD_CONTEXT_DEL_FAIL "Context '{1}' not deleted."
|
||||
#define STRING_CMD_CONTEXT_DEL_USAG "Context name needs to be specified."
|
||||
#define STRING_CMD_CONTEXT_LIST_EMPT "No contexts defined."
|
||||
#define STRING_CMD_CONTEXT_SET_NFOU "Context '{1}' not found."
|
||||
#define STRING_CMD_CONTEXT_SET_SUCC "Context '{1}' set. Use 'task context none' to remove."
|
||||
#define STRING_CMD_CONTEXT_SET_FAIL "Context '{1}' not applied."
|
||||
#define STRING_CMD_CONTEXT_SHOW_EMPT "No context is currently applied."
|
||||
#define STRING_CMD_CONTEXT_SHOW "Context '{1}' with filter '{2}' is currently applied."
|
||||
#define STRING_CMD_CONTEXT_NON_SUCC "Context unset."
|
||||
#define STRING_CMD_CONTEXT_NON_FAIL "Context not unset."
|
||||
#define STRING_CMD_HCONTEXT_USAGE "Lists all supported contexts, for completion purposes"
|
||||
#define STRING_CMD_CUSTOM_MISMATCH "There are different numbers of columns and labels for report '{1}'."
|
||||
#define STRING_CMD_CUSTOM_SHOWN "{1} shown"
|
||||
#define STRING_CMD_CUSTOM_COUNT "1 task"
|
||||
|
|
|
@ -203,26 +203,6 @@
|
|||
#define STRING_CMD_CONFIG_FILE_MOD "Agorda dosiero {1} modifita."
|
||||
#define STRING_CMD_CONFIG_NO_NAME "Specifu la nomon de agordvariablo, kiun vi volas modifi."
|
||||
#define STRING_CMD_HCONFIG_USAGE "Listigas çiun subtenatan agordan variablon, por motivo memkompletada"
|
||||
#define STRING_CMD_CONTEXT_USAGE "Set and define contexts (default filters)"
|
||||
#define STRING_CMD_CONTEXT_DEF_SUCC "Context '{1}' defined. Use 'task context {1}' to activate."
|
||||
#define STRING_CMD_CONTEXT_DEF_FAIL "Context '{1}' not defined."
|
||||
#define STRING_CMD_CONTEXT_DEF_USAG "Both context name and its definition must be provided."
|
||||
#define STRING_CMD_CONTEXT_DEF_ABRT "Context definiton aborted."
|
||||
#define STRING_CMD_CONTEXT_DEF_ABRT2 "Filter validation failed: {1}"
|
||||
#define STRING_CMD_CONTEXT_DEF_CONF "The filter '{1}' matches 0 pending tasks. Do you wish to continue?"
|
||||
#define STRING_CMD_CONTEXT_DEF_INVLD "The name '{1}' is reserved and not allowed to use as a context name."
|
||||
#define STRING_CMD_CONTEXT_DEL_SUCC "Context '{1}' deleted."
|
||||
#define STRING_CMD_CONTEXT_DEL_FAIL "Context '{1}' not deleted."
|
||||
#define STRING_CMD_CONTEXT_DEL_USAG "Context name needs to be specified."
|
||||
#define STRING_CMD_CONTEXT_LIST_EMPT "No contexts defined."
|
||||
#define STRING_CMD_CONTEXT_SET_NFOU "Context '{1}' not found."
|
||||
#define STRING_CMD_CONTEXT_SET_SUCC "Context '{1}' set. Use 'task context none' to remove."
|
||||
#define STRING_CMD_CONTEXT_SET_FAIL "Context '{1}' not applied."
|
||||
#define STRING_CMD_CONTEXT_SHOW_EMPT "No context is currently applied."
|
||||
#define STRING_CMD_CONTEXT_SHOW "Context '{1}' with filter '{2}' is currently applied."
|
||||
#define STRING_CMD_CONTEXT_NON_SUCC "Context unset."
|
||||
#define STRING_CMD_CONTEXT_NON_FAIL "Context not unset."
|
||||
#define STRING_CMD_HCONTEXT_USAGE "Lists all supported contexts, for completion purposes"
|
||||
#define STRING_CMD_CUSTOM_MISMATCH "La nombroj de kolumnoj kaj de siaj titoloj ne kongruas por raporto '{1}'."
|
||||
#define STRING_CMD_CUSTOM_SHOWN "{1} montritaj"
|
||||
#define STRING_CMD_CUSTOM_COUNT "1 tasko"
|
||||
|
|
|
@ -210,26 +210,6 @@
|
|||
#define STRING_CMD_CONFIG_FILE_MOD "Archivo de configuración {1} modificado."
|
||||
#define STRING_CMD_CONFIG_NO_NAME "Especifique el nombre de una variable de configuración a modificar."
|
||||
#define STRING_CMD_HCONFIG_USAGE "Lista todas las variables de configuración soportadas, a fines de completado"
|
||||
#define STRING_CMD_CONTEXT_USAGE "Establece y define contextos (filtros por defecto)"
|
||||
#define STRING_CMD_CONTEXT_DEF_SUCC "Contexto '{1}' definido."
|
||||
#define STRING_CMD_CONTEXT_DEF_FAIL "Contexto '{1}' no definido."
|
||||
#define STRING_CMD_CONTEXT_DEF_USAG "Se deben definir tanto el nombre de un contexto como su definición."
|
||||
#define STRING_CMD_CONTEXT_DEF_ABRT "Definición de contexto abortada."
|
||||
#define STRING_CMD_CONTEXT_DEF_ABRT2 "Validación de filtro fallida: {1}"
|
||||
#define STRING_CMD_CONTEXT_DEF_CONF "El filtro '{1}' coincide con 0 tareas pendientes. ¿Quiere continuar?"
|
||||
#define STRING_CMD_CONTEXT_DEF_INVLD "The name '{1}' is reserved and not allowed to use as a context name."
|
||||
#define STRING_CMD_CONTEXT_DEL_SUCC "Contexto '{1}' eliminado."
|
||||
#define STRING_CMD_CONTEXT_DEL_FAIL "Contexto '{1}' no eliminado."
|
||||
#define STRING_CMD_CONTEXT_DEL_USAG "El nombre del contexto necesita ser especificado."
|
||||
#define STRING_CMD_CONTEXT_LIST_EMPT "No hay contextos definidos."
|
||||
#define STRING_CMD_CONTEXT_SET_NFOU "Contexto '{1}' noencontrado."
|
||||
#define STRING_CMD_CONTEXT_SET_SUCC "Contexto '{1}' establecido. Use 'task context none' para eliminarlo."
|
||||
#define STRING_CMD_CONTEXT_SET_FAIL "Contexto '{1}' no aplicado."
|
||||
#define STRING_CMD_CONTEXT_SHOW_EMPT "Actualmente no se aplica ningún contexto."
|
||||
#define STRING_CMD_CONTEXT_SHOW "El contexto '{1}' con filtro '{2}' se aplica actualmente."
|
||||
#define STRING_CMD_CONTEXT_NON_SUCC "Contexto deshabilitado."
|
||||
#define STRING_CMD_CONTEXT_NON_FAIL "Context no deshabilitado."
|
||||
#define STRING_CMD_HCONTEXT_USAGE "Lista todos los contextos soportados, con fines de completado"
|
||||
#define STRING_CMD_CUSTOM_MISMATCH "Hay diferente número de columnas y etiquetas para el informe '{1}'."
|
||||
#define STRING_CMD_CUSTOM_SHOWN "{1} mostrada(s)"
|
||||
#define STRING_CMD_CUSTOM_COUNT "1 tarea"
|
||||
|
|
|
@ -205,26 +205,6 @@
|
|||
#define STRING_CMD_CONFIG_FILE_MOD "Config file {1} modified."
|
||||
#define STRING_CMD_CONFIG_NO_NAME "Specify the name of a config variable to modify."
|
||||
#define STRING_CMD_HCONFIG_USAGE "Lists all supported configuration variables, for completion purposes"
|
||||
#define STRING_CMD_CONTEXT_USAGE "Set and define contexts (default filters)"
|
||||
#define STRING_CMD_CONTEXT_DEF_SUCC "Context '{1}' defined. Use 'task context {1}' to activate."
|
||||
#define STRING_CMD_CONTEXT_DEF_FAIL "Context '{1}' not defined."
|
||||
#define STRING_CMD_CONTEXT_DEF_USAG "Both context name and its definition must be provided."
|
||||
#define STRING_CMD_CONTEXT_DEF_ABRT "Context definiton aborted."
|
||||
#define STRING_CMD_CONTEXT_DEF_ABRT2 "Filter validation failed: {1}"
|
||||
#define STRING_CMD_CONTEXT_DEF_CONF "The filter '{1}' matches 0 pending tasks. Do you wish to continue?"
|
||||
#define STRING_CMD_CONTEXT_DEF_INVLD "The name '{1}' is reserved and not allowed to use as a context name."
|
||||
#define STRING_CMD_CONTEXT_DEL_SUCC "Context '{1}' deleted."
|
||||
#define STRING_CMD_CONTEXT_DEL_FAIL "Context '{1}' not deleted."
|
||||
#define STRING_CMD_CONTEXT_DEL_USAG "Context name needs to be specified."
|
||||
#define STRING_CMD_CONTEXT_LIST_EMPT "No contexts defined."
|
||||
#define STRING_CMD_CONTEXT_SET_NFOU "Context '{1}' not found."
|
||||
#define STRING_CMD_CONTEXT_SET_SUCC "Context '{1}' set. Use 'task context none' to remove."
|
||||
#define STRING_CMD_CONTEXT_SET_FAIL "Context '{1}' not applied."
|
||||
#define STRING_CMD_CONTEXT_SHOW_EMPT "No context is currently applied."
|
||||
#define STRING_CMD_CONTEXT_SHOW "Context '{1}' with filter '{2}' is currently applied."
|
||||
#define STRING_CMD_CONTEXT_NON_SUCC "Context unset."
|
||||
#define STRING_CMD_CONTEXT_NON_FAIL "Context not unset."
|
||||
#define STRING_CMD_HCONTEXT_USAGE "Lists all supported contexts, for completion purposes"
|
||||
#define STRING_CMD_CUSTOM_MISMATCH "There are different numbers of columns and labels for report '{1}'."
|
||||
#define STRING_CMD_CUSTOM_SHOWN "{1} affichées"
|
||||
#define STRING_CMD_CUSTOM_COUNT "1 tâche"
|
||||
|
|
|
@ -204,26 +204,6 @@
|
|||
#define STRING_CMD_CONFIG_FILE_MOD "File di configurazione {1} modificato."
|
||||
#define STRING_CMD_CONFIG_NO_NAME "Specificare il nome di una variabile di configurazione da modificare."
|
||||
#define STRING_CMD_HCONFIG_USAGE "Elenca le variabili di configurazione supportate, per autocompletamento"
|
||||
#define STRING_CMD_CONTEXT_USAGE "Set and define contexts (default filters)"
|
||||
#define STRING_CMD_CONTEXT_DEF_SUCC "Context '{1}' defined. Use 'task context {1}' to activate."
|
||||
#define STRING_CMD_CONTEXT_DEF_FAIL "Context '{1}' not defined."
|
||||
#define STRING_CMD_CONTEXT_DEF_USAG "Both context name and its definition must be provided."
|
||||
#define STRING_CMD_CONTEXT_DEF_ABRT "Context definiton aborted."
|
||||
#define STRING_CMD_CONTEXT_DEF_ABRT2 "Filter validation failed: {1}"
|
||||
#define STRING_CMD_CONTEXT_DEF_CONF "The filter '{1}' matches 0 pending tasks. Do you wish to continue?"
|
||||
#define STRING_CMD_CONTEXT_DEF_INVLD "The name '{1}' is reserved and not allowed to use as a context name."
|
||||
#define STRING_CMD_CONTEXT_DEL_SUCC "Context '{1}' deleted."
|
||||
#define STRING_CMD_CONTEXT_DEL_FAIL "Context '{1}' not deleted."
|
||||
#define STRING_CMD_CONTEXT_DEL_USAG "Context name needs to be specified."
|
||||
#define STRING_CMD_CONTEXT_LIST_EMPT "No contexts defined."
|
||||
#define STRING_CMD_CONTEXT_SET_NFOU "Context '{1}' not found."
|
||||
#define STRING_CMD_CONTEXT_SET_SUCC "Context '{1}' set. Use 'task context none' to remove."
|
||||
#define STRING_CMD_CONTEXT_SET_FAIL "Context '{1}' not applied."
|
||||
#define STRING_CMD_CONTEXT_SHOW_EMPT "No context is currently applied."
|
||||
#define STRING_CMD_CONTEXT_SHOW "Context '{1}' with filter '{2}' is currently applied."
|
||||
#define STRING_CMD_CONTEXT_NON_SUCC "Context unset."
|
||||
#define STRING_CMD_CONTEXT_NON_FAIL "Context not unset."
|
||||
#define STRING_CMD_HCONTEXT_USAGE "Lists all supported contexts, for completion purposes"
|
||||
#define STRING_CMD_CUSTOM_MISMATCH "Differente numero di colonne ed etichette per il report '{1}'."
|
||||
#define STRING_CMD_CUSTOM_SHOWN "{1} mostrato"
|
||||
#define STRING_CMD_CUSTOM_COUNT "1 task"
|
||||
|
|
|
@ -205,26 +205,6 @@
|
|||
#define STRING_CMD_CONFIG_FILE_MOD "Config file {1} modified."
|
||||
#define STRING_CMD_CONFIG_NO_NAME "Specify the name of a config variable to modify."
|
||||
#define STRING_CMD_HCONFIG_USAGE "Lists all supported configuration variables, for completion purposes"
|
||||
#define STRING_CMD_CONTEXT_USAGE "Set and define contexts (default filters)"
|
||||
#define STRING_CMD_CONTEXT_DEF_SUCC "Context '{1}' defined. Use 'task context {1}' to activate."
|
||||
#define STRING_CMD_CONTEXT_DEF_FAIL "Context '{1}' not defined."
|
||||
#define STRING_CMD_CONTEXT_DEF_USAG "Both context name and its definition must be provided."
|
||||
#define STRING_CMD_CONTEXT_DEF_ABRT "Context definiton aborted."
|
||||
#define STRING_CMD_CONTEXT_DEF_ABRT2 "Filter validation failed: {1}"
|
||||
#define STRING_CMD_CONTEXT_DEF_CONF "The filter '{1}' matches 0 pending tasks. Do you wish to continue?"
|
||||
#define STRING_CMD_CONTEXT_DEF_INVLD "The name '{1}' is reserved and not allowed to use as a context name."
|
||||
#define STRING_CMD_CONTEXT_DEL_SUCC "Context '{1}' deleted."
|
||||
#define STRING_CMD_CONTEXT_DEL_FAIL "Context '{1}' not deleted."
|
||||
#define STRING_CMD_CONTEXT_DEL_USAG "Context name needs to be specified."
|
||||
#define STRING_CMD_CONTEXT_LIST_EMPT "No contexts defined."
|
||||
#define STRING_CMD_CONTEXT_SET_NFOU "Context '{1}' not found."
|
||||
#define STRING_CMD_CONTEXT_SET_SUCC "Context '{1}' set. Use 'task context none' to remove."
|
||||
#define STRING_CMD_CONTEXT_SET_FAIL "Context '{1}' not applied."
|
||||
#define STRING_CMD_CONTEXT_SHOW_EMPT "No context is currently applied."
|
||||
#define STRING_CMD_CONTEXT_SHOW "Context '{1}' with filter '{2}' is currently applied."
|
||||
#define STRING_CMD_CONTEXT_NON_SUCC "Context unset."
|
||||
#define STRING_CMD_CONTEXT_NON_FAIL "Context not unset."
|
||||
#define STRING_CMD_HCONTEXT_USAGE "Lists all supported contexts, for completion purposes"
|
||||
#define STRING_CMD_CUSTOM_MISMATCH "There are different numbers of columns and labels for report '{1}'."
|
||||
#define STRING_CMD_CUSTOM_SHOWN "{1} shown"
|
||||
#define STRING_CMD_CUSTOM_COUNT "1 task"
|
||||
|
|
|
@ -205,26 +205,6 @@
|
|||
#define STRING_CMD_CONFIG_FILE_MOD "Plik konfiguracyjny {1} został zmodyfikowany."
|
||||
#define STRING_CMD_CONFIG_NO_NAME "Podaj nazwę zmiennej w konfiguracji do zmiany."
|
||||
#define STRING_CMD_HCONFIG_USAGE "Wylistuj wszystkie zmienne konfiguracji."
|
||||
#define STRING_CMD_CONTEXT_USAGE "Set and define contexts (default filters)"
|
||||
#define STRING_CMD_CONTEXT_DEF_SUCC "Context '{1}' defined. Use 'task context {1}' to activate."
|
||||
#define STRING_CMD_CONTEXT_DEF_FAIL "Context '{1}' not defined."
|
||||
#define STRING_CMD_CONTEXT_DEF_USAG "Both context name and its definition must be provided."
|
||||
#define STRING_CMD_CONTEXT_DEF_ABRT "Context definiton aborted."
|
||||
#define STRING_CMD_CONTEXT_DEF_ABRT2 "Filter validation failed: {1}"
|
||||
#define STRING_CMD_CONTEXT_DEF_CONF "The filter '{1}' matches 0 pending tasks. Do you wish to continue?"
|
||||
#define STRING_CMD_CONTEXT_DEF_INVLD "The name '{1}' is reserved and not allowed to use as a context name."
|
||||
#define STRING_CMD_CONTEXT_DEL_SUCC "Context '{1}' deleted."
|
||||
#define STRING_CMD_CONTEXT_DEL_FAIL "Context '{1}' not deleted."
|
||||
#define STRING_CMD_CONTEXT_DEL_USAG "Context name needs to be specified."
|
||||
#define STRING_CMD_CONTEXT_LIST_EMPT "No contexts defined."
|
||||
#define STRING_CMD_CONTEXT_SET_NFOU "Context '{1}' not found."
|
||||
#define STRING_CMD_CONTEXT_SET_SUCC "Context '{1}' set. Use 'task context none' to remove."
|
||||
#define STRING_CMD_CONTEXT_SET_FAIL "Context '{1}' not applied."
|
||||
#define STRING_CMD_CONTEXT_SHOW_EMPT "No context is currently applied."
|
||||
#define STRING_CMD_CONTEXT_SHOW "Context '{1}' with filter '{2}' is currently applied."
|
||||
#define STRING_CMD_CONTEXT_NON_SUCC "Context unset."
|
||||
#define STRING_CMD_CONTEXT_NON_FAIL "Context not unset."
|
||||
#define STRING_CMD_HCONTEXT_USAGE "Lists all supported contexts, for completion purposes"
|
||||
#define STRING_CMD_CUSTOM_MISMATCH "Liczba kolumn i nagłówków nie zgadza się dla raportu '{1}'."
|
||||
#define STRING_CMD_CUSTOM_SHOWN "{1} pokazanych"
|
||||
#define STRING_CMD_CUSTOM_COUNT "1 zadanie"
|
||||
|
|
|
@ -205,26 +205,6 @@
|
|||
#define STRING_CMD_CONFIG_FILE_MOD "Ficheiro de configuração {1} alterado."
|
||||
#define STRING_CMD_CONFIG_NO_NAME "Especifique o nome da configuração a modificar."
|
||||
#define STRING_CMD_HCONFIG_USAGE "Lista todas as configurações suportadas, para fins de terminação automática"
|
||||
#define STRING_CMD_CONTEXT_USAGE "Set and define contexts (default filters)"
|
||||
#define STRING_CMD_CONTEXT_DEF_SUCC "Context '{1}' defined. Use 'task context {1}' to activate."
|
||||
#define STRING_CMD_CONTEXT_DEF_FAIL "Context '{1}' not defined."
|
||||
#define STRING_CMD_CONTEXT_DEF_USAG "Both context name and its definition must be provided."
|
||||
#define STRING_CMD_CONTEXT_DEF_ABRT "Context definiton aborted."
|
||||
#define STRING_CMD_CONTEXT_DEF_ABRT2 "Filter validation failed: {1}"
|
||||
#define STRING_CMD_CONTEXT_DEF_CONF "The filter '{1}' matches 0 pending tasks. Do you wish to continue?"
|
||||
#define STRING_CMD_CONTEXT_DEF_INVLD "The name '{1}' is reserved and not allowed to use as a context name."
|
||||
#define STRING_CMD_CONTEXT_DEL_SUCC "Context '{1}' deleted."
|
||||
#define STRING_CMD_CONTEXT_DEL_FAIL "Context '{1}' not deleted."
|
||||
#define STRING_CMD_CONTEXT_DEL_USAG "Context name needs to be specified."
|
||||
#define STRING_CMD_CONTEXT_LIST_EMPT "No contexts defined."
|
||||
#define STRING_CMD_CONTEXT_SET_NFOU "Context '{1}' not found."
|
||||
#define STRING_CMD_CONTEXT_SET_SUCC "Context '{1}' set. Use 'task context none' to remove."
|
||||
#define STRING_CMD_CONTEXT_SET_FAIL "Context '{1}' not applied."
|
||||
#define STRING_CMD_CONTEXT_SHOW_EMPT "No context is currently applied."
|
||||
#define STRING_CMD_CONTEXT_SHOW "Context '{1}' with filter '{2}' is currently applied."
|
||||
#define STRING_CMD_CONTEXT_NON_SUCC "Context unset."
|
||||
#define STRING_CMD_CONTEXT_NON_FAIL "Context not unset."
|
||||
#define STRING_CMD_HCONTEXT_USAGE "Lists all supported contexts, for completion purposes"
|
||||
#define STRING_CMD_CUSTOM_MISMATCH "O número de colunas e de rótulos não é o mesmo no relatório '{1}'."
|
||||
#define STRING_CMD_CUSTOM_SHOWN "{1} visiveis"
|
||||
#define STRING_CMD_CUSTOM_COUNT "1 tarefa"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue