mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
l10n: Eliminated STRING_CMD_DIAG_*
This commit is contained in:
parent
9b9735836a
commit
abf529eba8
10 changed files with 34 additions and 326 deletions
|
@ -33,7 +33,6 @@
|
|||
#include <time.h>
|
||||
#include <RX.h>
|
||||
#include <Context.h>
|
||||
#include <i18n.h>
|
||||
#include <shared.h>
|
||||
#include <format.h>
|
||||
#ifdef HAVE_COMMIT
|
||||
|
@ -44,7 +43,6 @@
|
|||
#include <gnutls/gnutls.h>
|
||||
#endif
|
||||
|
||||
|
||||
extern Context context;
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -52,7 +50,7 @@ CmdDiagnostics::CmdDiagnostics ()
|
|||
{
|
||||
_keyword = "diagnostics";
|
||||
_usage = "task diagnostics";
|
||||
_description = STRING_CMD_DIAG_USAGE;
|
||||
_description = "Platform, build and environment details";
|
||||
_read_only = true;
|
||||
_displays_id = false;
|
||||
_needs_gc = false;
|
||||
|
@ -79,17 +77,17 @@ int CmdDiagnostics::execute (std::string& output)
|
|||
<< bold.colorize (PACKAGE_STRING)
|
||||
<< '\n';
|
||||
|
||||
out << " " << STRING_CMD_DIAG_PLATFORM << ": " << osName ()
|
||||
out << " Platform: " << osName ()
|
||||
<< "\n\n";
|
||||
|
||||
// Compiler.
|
||||
out << bold.colorize (STRING_CMD_DIAG_COMPILER)
|
||||
out << bold.colorize ("Compiler")
|
||||
<< '\n'
|
||||
#ifdef __VERSION__
|
||||
<< " " << STRING_CMD_DIAG_VERSION << ": "
|
||||
<< " Version: "
|
||||
<< __VERSION__ << '\n'
|
||||
#endif
|
||||
<< " " << STRING_CMD_DIAG_CAPS << ':'
|
||||
<< " Caps:"
|
||||
#ifdef __STDC__
|
||||
<< " +stdc"
|
||||
#endif
|
||||
|
@ -119,18 +117,17 @@ int CmdDiagnostics::execute (std::string& output)
|
|||
<< '\n';
|
||||
|
||||
// Compiler compliance level.
|
||||
out << ' ' << STRING_CMD_DIAG_COMPLIANCE
|
||||
<< ": "
|
||||
out << " Compliance: "
|
||||
<< cppCompliance ()
|
||||
<< "\n\n";
|
||||
|
||||
out << bold.colorize (STRING_CMD_DIAG_FEATURES)
|
||||
out << bold.colorize ("Build Features")
|
||||
<< '\n'
|
||||
|
||||
// Build date.
|
||||
<< " " << STRING_CMD_DIAG_BUILT << ": " << __DATE__ << ' ' << __TIME__ << '\n'
|
||||
<< " Built: " << __DATE__ << ' ' << __TIME__ << '\n'
|
||||
#ifdef HAVE_COMMIT
|
||||
<< " " << STRING_CMD_DIAG_COMMIT << ": " << COMMIT << '\n'
|
||||
<< " Commit: " << COMMIT << '\n'
|
||||
#endif
|
||||
<< " CMake: " << CMAKE_VERSION << '\n';
|
||||
|
||||
|
@ -164,12 +161,12 @@ int CmdDiagnostics::execute (std::string& output)
|
|||
|
||||
// Config: .taskrc found, readable, writable
|
||||
File rcFile (context.config.file ());
|
||||
out << bold.colorize (STRING_CMD_DIAG_CONFIG)
|
||||
out << bold.colorize ("Configuration")
|
||||
<< '\n'
|
||||
<< " File: " << rcFile._data << ' '
|
||||
<< (rcFile.exists ()
|
||||
? STRING_CMD_DIAG_FOUND
|
||||
: STRING_CMD_DIAG_MISSING)
|
||||
? "(found)"
|
||||
: "(missing)")
|
||||
<< ", " << rcFile.size () << ' ' << "bytes"
|
||||
<< ", mode "
|
||||
<< std::setbase (8)
|
||||
|
@ -180,8 +177,8 @@ int CmdDiagnostics::execute (std::string& output)
|
|||
File location (context.config.get ("data.location"));
|
||||
out << " Data: " << location._data << ' '
|
||||
<< (location.exists ()
|
||||
? STRING_CMD_DIAG_FOUND
|
||||
: STRING_CMD_DIAG_MISSING)
|
||||
? "(found)"
|
||||
: "(missing)")
|
||||
<< ", " << (location.is_directory () ? "dir" : "?")
|
||||
<< ", mode "
|
||||
<< std::setbase (8)
|
||||
|
@ -202,14 +199,14 @@ int CmdDiagnostics::execute (std::string& output)
|
|||
|
||||
out << " Locking: "
|
||||
<< (context.config.getBoolean ("locking")
|
||||
? STRING_CMD_DIAG_ENABLED
|
||||
: STRING_CMD_DIAG_DISABLED)
|
||||
? "Enabled"
|
||||
: "Disabled")
|
||||
<< '\n';
|
||||
|
||||
out << " GC: "
|
||||
<< (context.config.getBoolean ("gc")
|
||||
? STRING_CMD_DIAG_ENABLED
|
||||
: STRING_CMD_DIAG_DISABLED)
|
||||
? "Enabled"
|
||||
: "Disabled")
|
||||
<< '\n';
|
||||
|
||||
// Determine rc.editor/$EDITOR/$VISUAL.
|
||||
|
@ -309,10 +306,10 @@ int CmdDiagnostics::execute (std::string& output)
|
|||
hookLocation += "hooks";
|
||||
}
|
||||
|
||||
out << bold.colorize (STRING_CMD_DIAG_HOOKS)
|
||||
out << bold.colorize ("Hooks")
|
||||
<< '\n'
|
||||
<< " System: "
|
||||
<< (context.config.getBoolean ("hooks") ? STRING_CMD_DIAG_HOOK_ENABLE : STRING_CMD_DIAG_HOOK_DISABLE)
|
||||
<< (context.config.getBoolean ("hooks") ? "Enabled" : "Disabled")
|
||||
<< '\n'
|
||||
<< " Location: "
|
||||
<< static_cast <std::string> (hookLocation)
|
||||
|
@ -346,8 +343,8 @@ int CmdDiagnostics::execute (std::string& output)
|
|||
|
||||
out.width (longest);
|
||||
out << std::left << name
|
||||
<< format (" ({1})", STRING_CMD_DIAG_HOOK_EXEC)
|
||||
<< (p.is_link () ? format (" ({1})", STRING_CMD_DIAG_HOOK_SYMLINK) : "")
|
||||
<< " (executable)"
|
||||
<< (p.is_link () ? " (symlink)" : "")
|
||||
<< '\n';
|
||||
}
|
||||
}
|
||||
|
@ -375,12 +372,12 @@ int CmdDiagnostics::execute (std::string& output)
|
|||
|
||||
out.width (longest);
|
||||
out << std::left << name
|
||||
<< (p.executable () ? format (" ({1})", STRING_CMD_DIAG_HOOK_EXEC) : format (" ({1})", STRING_CMD_DIAG_HOOK_NO_EXEC))
|
||||
<< (p.is_link () ? format (" ({1})", STRING_CMD_DIAG_HOOK_SYMLINK) : "")
|
||||
<< (p.executable () ? " (executable)" : " (not executable)")
|
||||
<< (p.is_link () ? " (symlink)" : "")
|
||||
<< ((name.substr (0, 6) == "on-add" ||
|
||||
name.substr (0, 9) == "on-modify" ||
|
||||
name.substr (0, 9) == "on-launch" ||
|
||||
name.substr (0, 7) == "on-exit") ? "" : format (" ({1})", STRING_CMD_DIAG_HOOK_NAME))
|
||||
name.substr (0, 7) == "on-exit") ? "" : "unrecognized hook name")
|
||||
<< '\n';
|
||||
}
|
||||
}
|
||||
|
@ -390,12 +387,12 @@ int CmdDiagnostics::execute (std::string& output)
|
|||
out << '\n';
|
||||
}
|
||||
else
|
||||
out << format (" ({1})\n", STRING_CMD_DIAG_NONE);
|
||||
out << " (-none-)\n";
|
||||
|
||||
out << '\n';
|
||||
|
||||
// Verify UUIDs are all unique.
|
||||
out << bold.colorize (STRING_CMD_DIAG_TESTS)
|
||||
out << bold.colorize ("Tests")
|
||||
<< '\n';
|
||||
|
||||
// Report terminal dimensions.
|
||||
|
@ -420,25 +417,24 @@ int CmdDiagnostics::execute (std::string& output)
|
|||
}
|
||||
|
||||
out << " Dups: "
|
||||
<< format (STRING_CMD_DIAG_UUID_SCAN, all.size ())
|
||||
<< format ("Scanned {1} tasks for duplicate UUIDs:", all.size ())
|
||||
<< '\n';
|
||||
|
||||
if (dups.size ())
|
||||
{
|
||||
for (auto& d : dups)
|
||||
out << " " << format (STRING_CMD_DIAG_UUID_DUP, d) << '\n';
|
||||
out << " " << format ("Found duplicate {1}", d) << '\n';
|
||||
}
|
||||
else
|
||||
{
|
||||
out << " " << STRING_CMD_DIAG_UUID_NO_DUP
|
||||
<< '\n';
|
||||
out << " No duplicates found\n";
|
||||
}
|
||||
|
||||
// Check all the UUID references
|
||||
|
||||
bool noBrokenRefs = true;
|
||||
out << " Broken ref: "
|
||||
<< format (STRING_CMD_DIAG_REF_SCAN, all.size ())
|
||||
<< format ("Scanned {1} tasks for broken references:", all.size ())
|
||||
<< '\n';
|
||||
|
||||
for (auto& task : all)
|
||||
|
@ -449,7 +445,7 @@ int CmdDiagnostics::execute (std::string& output)
|
|||
if (! context.tdb2.has (uuid))
|
||||
{
|
||||
out << " "
|
||||
<< format (STRING_CMD_DIAG_MISS_DEP, task.get ("uuid"), uuid)
|
||||
<< format ("Task {1} depends on nonexistent task: {2}", task.get ("uuid"), uuid)
|
||||
<< '\n';
|
||||
noBrokenRefs = false;
|
||||
}
|
||||
|
@ -461,15 +457,14 @@ int CmdDiagnostics::execute (std::string& output)
|
|||
if (parentUUID != "" && ! context.tdb2.has (parentUUID))
|
||||
{
|
||||
out << " "
|
||||
<< format (STRING_CMD_DIAG_MISS_PAR, task.get ("uuid"), parentUUID)
|
||||
<< format ("Task {1} has nonexistent recurrence template {2}", task.get ("uuid"), parentUUID)
|
||||
<< '\n';
|
||||
noBrokenRefs = false;
|
||||
}
|
||||
}
|
||||
|
||||
if (noBrokenRefs)
|
||||
out << " " << STRING_CMD_DIAG_REF_OK
|
||||
<< '\n';
|
||||
out << " No broken references found\n";
|
||||
|
||||
out << '\n';
|
||||
output = out.str ();
|
||||
|
|
|
@ -317,38 +317,6 @@
|
|||
#define STRING_CMD_SYNC_TRUST_CA "Entweder ein CA-Zertifikat bereitstellen oder Prüfung deaktivieren, nicht jedoch beides."
|
||||
#define STRING_CMD_SYNC_TRUST_OBS "Erlaubte Werte der 'taskd.trust'-Option sind nur noch 'strict', 'ignore hostname' und 'allow all'."
|
||||
|
||||
// STRING_CMD_DIAG_* strings all appear on the 'diag' command output.
|
||||
#define STRING_CMD_DIAG_USAGE "Platform, build and environment details"
|
||||
#define STRING_CMD_DIAG_PLATFORM "Platform"
|
||||
#define STRING_CMD_DIAG_COMPILER "Compiler"
|
||||
#define STRING_CMD_DIAG_VERSION "Version"
|
||||
#define STRING_CMD_DIAG_CAPS "Caps"
|
||||
#define STRING_CMD_DIAG_COMPLIANCE "Compliance"
|
||||
#define STRING_CMD_DIAG_FEATURES "Build Features"
|
||||
#define STRING_CMD_DIAG_BUILT "Built"
|
||||
#define STRING_CMD_DIAG_COMMIT "Commit"
|
||||
#define STRING_CMD_DIAG_FOUND "(found)"
|
||||
#define STRING_CMD_DIAG_MISSING "(missing)"
|
||||
#define STRING_CMD_DIAG_MISS_DEP "Task {1} depends on nonexistent task: {2}"
|
||||
#define STRING_CMD_DIAG_MISS_PAR "Task {1} has nonexistent recurrence template {2}"
|
||||
#define STRING_CMD_DIAG_ENABLED "Enabled"
|
||||
#define STRING_CMD_DIAG_DISABLED "Disabled"
|
||||
#define STRING_CMD_DIAG_CONFIG "Configuration"
|
||||
#define STRING_CMD_DIAG_TESTS "Tests"
|
||||
#define STRING_CMD_DIAG_UUID_SCAN "Scanned {1} tasks for duplicate UUIDs:"
|
||||
#define STRING_CMD_DIAG_REF_SCAN "Scanned {1} tasks for broken references:"
|
||||
#define STRING_CMD_DIAG_REF_OK "No broken references found"
|
||||
#define STRING_CMD_DIAG_UUID_DUP "Found duplicate {1}"
|
||||
#define STRING_CMD_DIAG_UUID_NO_DUP "No duplicates found"
|
||||
#define STRING_CMD_DIAG_NONE "-none-"
|
||||
#define STRING_CMD_DIAG_HOOKS "Hooks"
|
||||
#define STRING_CMD_DIAG_HOOK_NAME "unrecognized hook name"
|
||||
#define STRING_CMD_DIAG_HOOK_SYMLINK "symlink"
|
||||
#define STRING_CMD_DIAG_HOOK_EXEC "executable"
|
||||
#define STRING_CMD_DIAG_HOOK_NO_EXEC "not executable"
|
||||
#define STRING_CMD_DIAG_HOOK_ENABLE "Enabled"
|
||||
#define STRING_CMD_DIAG_HOOK_DISABLE "Disabled"
|
||||
|
||||
#define STRING_CMD_COMMANDS_USAGE "Generates a list of all commands, with behavior details"
|
||||
#define STRING_CMD_HCOMMANDS_USAGE "Erzeugt eine Liste aller Befehle zur Auto-Vervollständigung"
|
||||
#define STRING_CMD_ZSHCOMMANDS_USAGE "Erzeugt eine Liste aller Befehle zur ZSH-Auto-Verfollständigung"
|
||||
|
|
|
@ -314,38 +314,6 @@
|
|||
#define STRING_CMD_SYNC_TRUST_CA "You should either provide a CA certificate or override verification, but not both."
|
||||
#define STRING_CMD_SYNC_TRUST_OBS "The 'taskd.trust' settings may now only contain a value of 'strict', 'ignore hostname' or 'allow all'."
|
||||
|
||||
// STRING_CMD_DIAG_* strings all appear on the 'diag' command output.
|
||||
#define STRING_CMD_DIAG_USAGE "Platform, build and environment details"
|
||||
#define STRING_CMD_DIAG_PLATFORM "Platform"
|
||||
#define STRING_CMD_DIAG_COMPILER "Compiler"
|
||||
#define STRING_CMD_DIAG_VERSION "Version"
|
||||
#define STRING_CMD_DIAG_CAPS "Caps"
|
||||
#define STRING_CMD_DIAG_COMPLIANCE "Compliance"
|
||||
#define STRING_CMD_DIAG_FEATURES "Build Features"
|
||||
#define STRING_CMD_DIAG_BUILT "Built"
|
||||
#define STRING_CMD_DIAG_COMMIT "Commit"
|
||||
#define STRING_CMD_DIAG_FOUND "(found)"
|
||||
#define STRING_CMD_DIAG_MISSING "(missing)"
|
||||
#define STRING_CMD_DIAG_MISS_DEP "Task {1} depends on nonexistent task: {2}"
|
||||
#define STRING_CMD_DIAG_MISS_PAR "Task {1} has nonexistent recurrence template {2}"
|
||||
#define STRING_CMD_DIAG_ENABLED "Enabled"
|
||||
#define STRING_CMD_DIAG_DISABLED "Disabled"
|
||||
#define STRING_CMD_DIAG_CONFIG "Configuration"
|
||||
#define STRING_CMD_DIAG_TESTS "Tests"
|
||||
#define STRING_CMD_DIAG_UUID_SCAN "Scanned {1} tasks for duplicate UUIDs:"
|
||||
#define STRING_CMD_DIAG_REF_SCAN "Scanned {1} tasks for broken references:"
|
||||
#define STRING_CMD_DIAG_REF_OK "No broken references found"
|
||||
#define STRING_CMD_DIAG_UUID_DUP "Found duplicate {1}"
|
||||
#define STRING_CMD_DIAG_UUID_NO_DUP "No duplicates found"
|
||||
#define STRING_CMD_DIAG_NONE "-none-"
|
||||
#define STRING_CMD_DIAG_HOOKS "Hooks"
|
||||
#define STRING_CMD_DIAG_HOOK_NAME "unrecognized hook name"
|
||||
#define STRING_CMD_DIAG_HOOK_SYMLINK "symlink"
|
||||
#define STRING_CMD_DIAG_HOOK_EXEC "executable"
|
||||
#define STRING_CMD_DIAG_HOOK_NO_EXEC "not executable"
|
||||
#define STRING_CMD_DIAG_HOOK_ENABLE "Enabled"
|
||||
#define STRING_CMD_DIAG_HOOK_DISABLE "Disabled"
|
||||
|
||||
#define STRING_CMD_COMMANDS_USAGE "Generates a list of all commands, with behavior details"
|
||||
#define STRING_CMD_HCOMMANDS_USAGE "Generates a list of all commands, for autocompletion purposes"
|
||||
#define STRING_CMD_ZSHCOMMANDS_USAGE "Generates a list of all commands, for zsh autocompletion purposes"
|
||||
|
|
|
@ -317,38 +317,6 @@
|
|||
#define STRING_CMD_SYNC_TRUST_CA "You should either provide a CA certificate or override verification, but not both."
|
||||
#define STRING_CMD_SYNC_TRUST_OBS "The 'taskd.trust' settings may now only contain a value of 'strict', 'ignore hostname' or 'allow all'."
|
||||
|
||||
// STRING_CMD_DIAG_* strings all appear on the 'diag' command output.
|
||||
#define STRING_CMD_DIAG_USAGE "Platform, build and environment details"
|
||||
#define STRING_CMD_DIAG_PLATFORM "Platform"
|
||||
#define STRING_CMD_DIAG_COMPILER "Compiler"
|
||||
#define STRING_CMD_DIAG_VERSION "Version"
|
||||
#define STRING_CMD_DIAG_CAPS "Caps"
|
||||
#define STRING_CMD_DIAG_COMPLIANCE "Compliance"
|
||||
#define STRING_CMD_DIAG_FEATURES "Build Features"
|
||||
#define STRING_CMD_DIAG_BUILT "Built"
|
||||
#define STRING_CMD_DIAG_COMMIT "Commit"
|
||||
#define STRING_CMD_DIAG_FOUND "(found)"
|
||||
#define STRING_CMD_DIAG_MISSING "(missing)"
|
||||
#define STRING_CMD_DIAG_MISS_DEP "Task {1} depends on nonexistent task: {2}"
|
||||
#define STRING_CMD_DIAG_MISS_PAR "Task {1} has nonexistent recurrence template {2}"
|
||||
#define STRING_CMD_DIAG_ENABLED "Enabled"
|
||||
#define STRING_CMD_DIAG_DISABLED "Disabled"
|
||||
#define STRING_CMD_DIAG_CONFIG "Configuration"
|
||||
#define STRING_CMD_DIAG_TESTS "Tests"
|
||||
#define STRING_CMD_DIAG_UUID_SCAN "Scanned {1} tasks for duplicate UUIDs:"
|
||||
#define STRING_CMD_DIAG_REF_SCAN "Scanned {1} tasks for broken references:"
|
||||
#define STRING_CMD_DIAG_REF_OK "No broken references found"
|
||||
#define STRING_CMD_DIAG_UUID_DUP "Found duplicate {1}"
|
||||
#define STRING_CMD_DIAG_UUID_NO_DUP "No duplicates found"
|
||||
#define STRING_CMD_DIAG_NONE "-none-"
|
||||
#define STRING_CMD_DIAG_HOOKS "Hooks"
|
||||
#define STRING_CMD_DIAG_HOOK_NAME "unrecognized hook name"
|
||||
#define STRING_CMD_DIAG_HOOK_SYMLINK "symlink"
|
||||
#define STRING_CMD_DIAG_HOOK_EXEC "executable"
|
||||
#define STRING_CMD_DIAG_HOOK_NO_EXEC "not executable"
|
||||
#define STRING_CMD_DIAG_HOOK_ENABLE "Enabled"
|
||||
#define STRING_CMD_DIAG_HOOK_DISABLE "Disabled"
|
||||
|
||||
#define STRING_CMD_COMMANDS_USAGE "Generates a list of all commands, with behavior details"
|
||||
#define STRING_CMD_HCOMMANDS_USAGE "Generates a list of all commands, for autocompletion purposes"
|
||||
#define STRING_CMD_ZSHCOMMANDS_USAGE "Generates a list of all commands, for zsh autocompletion purposes"
|
||||
|
|
|
@ -300,7 +300,6 @@
|
|||
#define STRING_TASK_NO_DESC "La anotación carece de descripción: {1}"
|
||||
#define STRING_TASK_NO_ENTRY "La anotación carece de fecha de entrada: {1}"
|
||||
|
||||
// STRING_CMD_DIAG_* strings all appear on the 'diag' command output.
|
||||
#define STRING_CMD_SYNC_USAGE "Sincroniza datos con el Servidor Task"
|
||||
#define STRING_CMD_SYNC_NO_SERVER "El Servidor Task no está configurado."
|
||||
#define STRING_CMD_SYNC_BAD_CRED "Credenciales del Servidor Task incorrectas."
|
||||
|
@ -326,36 +325,6 @@
|
|||
#define STRING_CMD_SYNC_BAD_CA "Certificado CA no encontrado."
|
||||
#define STRING_CMD_SYNC_TRUST_CA "Debe proveer un certificado CA o la verificación de sobrescritura, pero no ambos."
|
||||
#define STRING_CMD_SYNC_TRUST_OBS "Los ajustes de 'taskd.trust' ahora solo pueden contener uno de los valores 'strict', 'ignore hostname' o 'allow all'."
|
||||
#define STRING_CMD_DIAG_USAGE "Detalles de plataforma, construcción y entorno"
|
||||
#define STRING_CMD_DIAG_PLATFORM "Plataforma"
|
||||
#define STRING_CMD_DIAG_COMPILER "Compilador"
|
||||
#define STRING_CMD_DIAG_VERSION "Versión"
|
||||
#define STRING_CMD_DIAG_CAPS "Capacidades"
|
||||
#define STRING_CMD_DIAG_COMPLIANCE "Conformidad"
|
||||
#define STRING_CMD_DIAG_FEATURES "Características Constructivas"
|
||||
#define STRING_CMD_DIAG_BUILT "Construido"
|
||||
#define STRING_CMD_DIAG_COMMIT "Commit" // |esp-ESP|==|eng-USA|
|
||||
#define STRING_CMD_DIAG_FOUND "(encontrado)"
|
||||
#define STRING_CMD_DIAG_MISSING "(no encontrado)"
|
||||
#define STRING_CMD_DIAG_MISS_DEP "La tarea {1} depende de la tarea inexistente: {2}"
|
||||
#define STRING_CMD_DIAG_MISS_PAR "La tarea {1} tiene un modelo de recurrencia inexistente {2}"
|
||||
#define STRING_CMD_DIAG_ENABLED "Habilitado"
|
||||
#define STRING_CMD_DIAG_DISABLED "deshabilitado"
|
||||
#define STRING_CMD_DIAG_CONFIG "Configuración"
|
||||
#define STRING_CMD_DIAG_TESTS "Comprobaciones"
|
||||
#define STRING_CMD_DIAG_UUID_SCAN "Exploradas {1} tareas buscando UUIDs duplicados:"
|
||||
#define STRING_CMD_DIAG_REF_SCAN "Exploradas {1} tareas buscando referencias rotas:"
|
||||
#define STRING_CMD_DIAG_REF_OK "No se encontraron referencias rotas"
|
||||
#define STRING_CMD_DIAG_UUID_DUP "Encontrado duplicado {1}"
|
||||
#define STRING_CMD_DIAG_UUID_NO_DUP "No se encontraron duplicados"
|
||||
#define STRING_CMD_DIAG_NONE "-ninguno-"
|
||||
#define STRING_CMD_DIAG_HOOKS "Hooks" // |esp-ESP|==|eng-USA|
|
||||
#define STRING_CMD_DIAG_HOOK_NAME "nombre de hook no reconocido"
|
||||
#define STRING_CMD_DIAG_HOOK_SYMLINK "symlink" // |esp-ESP|==|eng-USA|
|
||||
#define STRING_CMD_DIAG_HOOK_EXEC "ejecutable"
|
||||
#define STRING_CMD_DIAG_HOOK_NO_EXEC "no ejecutable"
|
||||
#define STRING_CMD_DIAG_HOOK_ENABLE "Habilitado"
|
||||
#define STRING_CMD_DIAG_HOOK_DISABLE "Inhabilitado"
|
||||
|
||||
#define STRING_CMD_COMMANDS_USAGE "Genera una lista de todos los comandos, con detalles de comportamiento"
|
||||
#define STRING_CMD_HCOMMANDS_USAGE "Genera una lista de todos los comandos, con fines de auto-completado"
|
||||
|
|
|
@ -319,38 +319,6 @@
|
|||
#define STRING_CMD_SYNC_TRUST_CA "You should either provide a CA certificate or override verification, but not both."
|
||||
#define STRING_CMD_SYNC_TRUST_OBS "The 'taskd.trust' settings may now only contain a value of 'strict', 'ignore hostname' or 'allow all'."
|
||||
|
||||
// STRING_CMD_DIAG_* strings all appear on the 'diag' command output.
|
||||
#define STRING_CMD_DIAG_USAGE "Platform, build and environment details"
|
||||
#define STRING_CMD_DIAG_PLATFORM "Platform"
|
||||
#define STRING_CMD_DIAG_COMPILER "Compiler"
|
||||
#define STRING_CMD_DIAG_VERSION "Version"
|
||||
#define STRING_CMD_DIAG_CAPS "Caps"
|
||||
#define STRING_CMD_DIAG_COMPLIANCE "Compliance"
|
||||
#define STRING_CMD_DIAG_FEATURES "Build Features"
|
||||
#define STRING_CMD_DIAG_BUILT "Built"
|
||||
#define STRING_CMD_DIAG_COMMIT "Commit"
|
||||
#define STRING_CMD_DIAG_FOUND "(found)"
|
||||
#define STRING_CMD_DIAG_MISSING "(missing)"
|
||||
#define STRING_CMD_DIAG_MISS_DEP "Task {1} depends on nonexistent task: {2}"
|
||||
#define STRING_CMD_DIAG_MISS_PAR "Task {1} has nonexistent recurrence template {2}"
|
||||
#define STRING_CMD_DIAG_ENABLED "Enabled"
|
||||
#define STRING_CMD_DIAG_DISABLED "Disabled"
|
||||
#define STRING_CMD_DIAG_CONFIG "Configuration"
|
||||
#define STRING_CMD_DIAG_TESTS "Tests"
|
||||
#define STRING_CMD_DIAG_UUID_SCAN "Scanned {1} tasks for duplicate UUIDs:"
|
||||
#define STRING_CMD_DIAG_REF_SCAN "Scanned {1} tasks for broken references:"
|
||||
#define STRING_CMD_DIAG_REF_OK "No broken references found"
|
||||
#define STRING_CMD_DIAG_UUID_DUP "Found duplicate {1}"
|
||||
#define STRING_CMD_DIAG_UUID_NO_DUP "No duplicates found"
|
||||
#define STRING_CMD_DIAG_NONE "-none-"
|
||||
#define STRING_CMD_DIAG_HOOKS "Hooks"
|
||||
#define STRING_CMD_DIAG_HOOK_NAME "unrecognized hook name"
|
||||
#define STRING_CMD_DIAG_HOOK_SYMLINK "symlink"
|
||||
#define STRING_CMD_DIAG_HOOK_EXEC "executable"
|
||||
#define STRING_CMD_DIAG_HOOK_NO_EXEC "not executable"
|
||||
#define STRING_CMD_DIAG_HOOK_ENABLE "Enabled"
|
||||
#define STRING_CMD_DIAG_HOOK_DISABLE "Disabled"
|
||||
|
||||
#define STRING_CMD_COMMANDS_USAGE "Generates a list of all commands, with behavior details"
|
||||
#define STRING_CMD_HCOMMANDS_USAGE "Generates a list of all commands, for autocompletion purposes"
|
||||
#define STRING_CMD_ZSHCOMMANDS_USAGE "Generates a list of all commands, for zsh autocompletion purposes"
|
||||
|
|
|
@ -318,38 +318,6 @@
|
|||
#define STRING_CMD_SYNC_TRUST_CA "You should either provide a CA certificate or override verification, but not both."
|
||||
#define STRING_CMD_SYNC_TRUST_OBS "The 'taskd.trust' settings may now only contain a value of 'strict', 'ignore hostname' or 'allow all'."
|
||||
|
||||
// STRING_CMD_DIAG_* strings all appear on the 'diag' command output.
|
||||
#define STRING_CMD_DIAG_USAGE "Dettagli su piattaforma, build e ambiente"
|
||||
#define STRING_CMD_DIAG_PLATFORM "Piattaforma"
|
||||
#define STRING_CMD_DIAG_COMPILER "Compilatore"
|
||||
#define STRING_CMD_DIAG_VERSION "Versione"
|
||||
#define STRING_CMD_DIAG_CAPS "Caps"
|
||||
#define STRING_CMD_DIAG_COMPLIANCE "Compliance"
|
||||
#define STRING_CMD_DIAG_FEATURES "Caratteristiche della Build"
|
||||
#define STRING_CMD_DIAG_BUILT "Generato"
|
||||
#define STRING_CMD_DIAG_COMMIT "Commit"
|
||||
#define STRING_CMD_DIAG_FOUND "(trovato)"
|
||||
#define STRING_CMD_DIAG_MISSING "(mancante)"
|
||||
#define STRING_CMD_DIAG_MISS_DEP "Task {1} depends on nonexistent task: {2}"
|
||||
#define STRING_CMD_DIAG_MISS_PAR "Task {1} has nonexistent recurrence template {2}"
|
||||
#define STRING_CMD_DIAG_ENABLED "Abilitato"
|
||||
#define STRING_CMD_DIAG_DISABLED "Disabilitato"
|
||||
#define STRING_CMD_DIAG_CONFIG "Configurazione"
|
||||
#define STRING_CMD_DIAG_TESTS "Test"
|
||||
#define STRING_CMD_DIAG_UUID_SCAN "Valutati {1} task per duplicazione UUID:"
|
||||
#define STRING_CMD_DIAG_REF_SCAN "Scanned {1} tasks for broken references:"
|
||||
#define STRING_CMD_DIAG_REF_OK "No broken references found"
|
||||
#define STRING_CMD_DIAG_UUID_DUP "Trovato duplicato {1}"
|
||||
#define STRING_CMD_DIAG_UUID_NO_DUP "Nessun duplicato trovato"
|
||||
#define STRING_CMD_DIAG_NONE "-nessuno-"
|
||||
#define STRING_CMD_DIAG_HOOKS "Hooks"
|
||||
#define STRING_CMD_DIAG_HOOK_NAME "unrecognized hook name"
|
||||
#define STRING_CMD_DIAG_HOOK_SYMLINK "symlink"
|
||||
#define STRING_CMD_DIAG_HOOK_EXEC "executable"
|
||||
#define STRING_CMD_DIAG_HOOK_NO_EXEC "not executable"
|
||||
#define STRING_CMD_DIAG_HOOK_ENABLE "Enabled"
|
||||
#define STRING_CMD_DIAG_HOOK_DISABLE "Disabled"
|
||||
|
||||
#define STRING_CMD_COMMANDS_USAGE "Generates a list of all commands, with behavior details"
|
||||
#define STRING_CMD_HCOMMANDS_USAGE "Genera la lista di tutti i comandi, per autocompletamento"
|
||||
#define STRING_CMD_ZSHCOMMANDS_USAGE "Genera la lista di tutti i comandi, per autocompletamento in zsh"
|
||||
|
|
|
@ -319,38 +319,6 @@
|
|||
#define STRING_CMD_SYNC_TRUST_CA "You should either provide a CA certificate or override verification, but not both."
|
||||
#define STRING_CMD_SYNC_TRUST_OBS "The 'taskd.trust' settings may now only contain a value of 'strict', 'ignore hostname' or 'allow all'."
|
||||
|
||||
// STRING_CMD_DIAG_* strings all appear on the 'diag' command output.
|
||||
#define STRING_CMD_DIAG_USAGE "Platform, build and environment details"
|
||||
#define STRING_CMD_DIAG_PLATFORM "Platform"
|
||||
#define STRING_CMD_DIAG_COMPILER "Compiler"
|
||||
#define STRING_CMD_DIAG_VERSION "Version"
|
||||
#define STRING_CMD_DIAG_CAPS "Caps"
|
||||
#define STRING_CMD_DIAG_COMPLIANCE "Compliance"
|
||||
#define STRING_CMD_DIAG_FEATURES "Build Features"
|
||||
#define STRING_CMD_DIAG_BUILT "Built"
|
||||
#define STRING_CMD_DIAG_COMMIT "Commit"
|
||||
#define STRING_CMD_DIAG_FOUND "(found)"
|
||||
#define STRING_CMD_DIAG_MISSING "(missing)"
|
||||
#define STRING_CMD_DIAG_MISS_DEP "Task {1} depends on nonexistent task: {2}"
|
||||
#define STRING_CMD_DIAG_MISS_PAR "Task {1} has nonexistent recurrence template {2}"
|
||||
#define STRING_CMD_DIAG_ENABLED "Enabled"
|
||||
#define STRING_CMD_DIAG_DISABLED "Disabled"
|
||||
#define STRING_CMD_DIAG_CONFIG "Configuration"
|
||||
#define STRING_CMD_DIAG_TESTS "Tests"
|
||||
#define STRING_CMD_DIAG_UUID_SCAN "Scanned {1} tasks for duplicate UUIDs:"
|
||||
#define STRING_CMD_DIAG_REF_SCAN "Scanned {1} tasks for broken references:"
|
||||
#define STRING_CMD_DIAG_REF_OK "No broken references found"
|
||||
#define STRING_CMD_DIAG_UUID_DUP "Found duplicate {1}"
|
||||
#define STRING_CMD_DIAG_UUID_NO_DUP "No duplicates found"
|
||||
#define STRING_CMD_DIAG_NONE "-none-"
|
||||
#define STRING_CMD_DIAG_HOOKS "Hooks"
|
||||
#define STRING_CMD_DIAG_HOOK_NAME "unrecognized hook name"
|
||||
#define STRING_CMD_DIAG_HOOK_SYMLINK "symlink"
|
||||
#define STRING_CMD_DIAG_HOOK_EXEC "executable"
|
||||
#define STRING_CMD_DIAG_HOOK_NO_EXEC "not executable"
|
||||
#define STRING_CMD_DIAG_HOOK_ENABLE "Enabled"
|
||||
#define STRING_CMD_DIAG_HOOK_DISABLE "Disabled"
|
||||
|
||||
#define STRING_CMD_COMMANDS_USAGE "Generates a list of all commands, with behavior details"
|
||||
#define STRING_CMD_HCOMMANDS_USAGE "Generates a list of all commands, for autocompletion purposes"
|
||||
#define STRING_CMD_ZSHCOMMANDS_USAGE "Generates a list of all commands, for zsh autocompletion purposes"
|
||||
|
|
|
@ -319,38 +319,6 @@
|
|||
#define STRING_CMD_SYNC_TRUST_CA "Powinieneś udostępnić certyfikat CA lub nadpisać weryfikację. Wybierz jedną z opcji."
|
||||
#define STRING_CMD_SYNC_TRUST_OBS "The 'taskd.trust' settings may now only contain a value of 'strict', 'ignore hostname' or 'allow all'."
|
||||
|
||||
// STRING_CMD_DIAG_* strings all appear on the 'diag' command output.
|
||||
#define STRING_CMD_DIAG_USAGE "Szczegóły platformy i środowiska budowania"
|
||||
#define STRING_CMD_DIAG_PLATFORM "Platforma"
|
||||
#define STRING_CMD_DIAG_COMPILER "Kompilator"
|
||||
#define STRING_CMD_DIAG_VERSION "Wersja"
|
||||
#define STRING_CMD_DIAG_CAPS "Flagi"
|
||||
#define STRING_CMD_DIAG_COMPLIANCE "Compliance"
|
||||
#define STRING_CMD_DIAG_FEATURES "Opcje budowania"
|
||||
#define STRING_CMD_DIAG_BUILT "Zbudowano"
|
||||
#define STRING_CMD_DIAG_COMMIT "Zatwierdzenie"
|
||||
#define STRING_CMD_DIAG_FOUND "(jest)"
|
||||
#define STRING_CMD_DIAG_MISSING "(brak)"
|
||||
#define STRING_CMD_DIAG_MISS_DEP "Task {1} depends on nonexistent task: {2}"
|
||||
#define STRING_CMD_DIAG_MISS_PAR "Task {1} has nonexistent recurrence template {2}"
|
||||
#define STRING_CMD_DIAG_ENABLED "Włączone"
|
||||
#define STRING_CMD_DIAG_DISABLED "Wyłączone"
|
||||
#define STRING_CMD_DIAG_CONFIG "Konfiguracja"
|
||||
#define STRING_CMD_DIAG_TESTS "Testy"
|
||||
#define STRING_CMD_DIAG_UUID_SCAN "Zeskanowano {1} zadań w poszukiwaniu zdublowanych UUIDów:"
|
||||
#define STRING_CMD_DIAG_REF_SCAN "Scanned {1} tasks for broken references:"
|
||||
#define STRING_CMD_DIAG_REF_OK "No broken references found"
|
||||
#define STRING_CMD_DIAG_UUID_DUP "Znaleziono duplikaty {1}"
|
||||
#define STRING_CMD_DIAG_UUID_NO_DUP "Nie znaleziono duplikatów"
|
||||
#define STRING_CMD_DIAG_NONE "-brak-"
|
||||
#define STRING_CMD_DIAG_HOOKS "Haki"
|
||||
#define STRING_CMD_DIAG_HOOK_NAME "unrecognized hook name"
|
||||
#define STRING_CMD_DIAG_HOOK_SYMLINK "symlink"
|
||||
#define STRING_CMD_DIAG_HOOK_EXEC "executable"
|
||||
#define STRING_CMD_DIAG_HOOK_NO_EXEC "not executable"
|
||||
#define STRING_CMD_DIAG_HOOK_ENABLE "Enabled"
|
||||
#define STRING_CMD_DIAG_HOOK_DISABLE "Disabled"
|
||||
|
||||
#define STRING_CMD_COMMANDS_USAGE "Generates a list of all commands, with behavior details"
|
||||
#define STRING_CMD_HCOMMANDS_USAGE "Generuje listę wszystkich poleceń dla funkcji autouzupełniania"
|
||||
#define STRING_CMD_ZSHCOMMANDS_USAGE "Generuje listę wszystkich poleceń dla funkcji autouzupełniania w powłoce zsh"
|
||||
|
|
|
@ -319,38 +319,6 @@
|
|||
#define STRING_CMD_SYNC_TRUST_CA "Deve fornecer um certificado CA ou desactivar a verificação, mas não ambos."
|
||||
#define STRING_CMD_SYNC_TRUST_OBS "The 'taskd.trust' settings may now only contain a value of 'strict', 'ignore hostname' or 'allow all'."
|
||||
|
||||
// STRING_CMD_DIAG_* strings all appear on the 'diag' command output.
|
||||
#define STRING_CMD_DIAG_USAGE "Plataforma, versão e detalhes de ambiente"
|
||||
#define STRING_CMD_DIAG_PLATFORM "Plataforma"
|
||||
#define STRING_CMD_DIAG_COMPILER "Compilador"
|
||||
#define STRING_CMD_DIAG_VERSION "Versão"
|
||||
#define STRING_CMD_DIAG_CAPS "Capacidades"
|
||||
#define STRING_CMD_DIAG_COMPLIANCE "Compliance"
|
||||
#define STRING_CMD_DIAG_FEATURES "Características da versão"
|
||||
#define STRING_CMD_DIAG_BUILT "Criado"
|
||||
#define STRING_CMD_DIAG_COMMIT "Commit" // |por-PRT|==|eng-USA|
|
||||
#define STRING_CMD_DIAG_FOUND "(presente)"
|
||||
#define STRING_CMD_DIAG_MISSING "(em falta)"
|
||||
#define STRING_CMD_DIAG_MISS_DEP "Task {1} depends on nonexistent task: {2}"
|
||||
#define STRING_CMD_DIAG_MISS_PAR "Task {1} has nonexistent recurrence template {2}"
|
||||
#define STRING_CMD_DIAG_ENABLED "Ativado"
|
||||
#define STRING_CMD_DIAG_DISABLED "Desativado"
|
||||
#define STRING_CMD_DIAG_CONFIG "Configuração"
|
||||
#define STRING_CMD_DIAG_TESTS "Testes"
|
||||
#define STRING_CMD_DIAG_UUID_SCAN "UUIDs duplicados em {1} tarefas:"
|
||||
#define STRING_CMD_DIAG_REF_SCAN "Scanned {1} tasks for broken references:"
|
||||
#define STRING_CMD_DIAG_REF_OK "No broken references found"
|
||||
#define STRING_CMD_DIAG_UUID_DUP "UUID duplicado {1}"
|
||||
#define STRING_CMD_DIAG_UUID_NO_DUP "Nenhum duplicado encontrado"
|
||||
#define STRING_CMD_DIAG_NONE "-nenhum-"
|
||||
#define STRING_CMD_DIAG_HOOKS "Âncoras"
|
||||
#define STRING_CMD_DIAG_HOOK_NAME "unrecognized hook name"
|
||||
#define STRING_CMD_DIAG_HOOK_SYMLINK "symlink"
|
||||
#define STRING_CMD_DIAG_HOOK_EXEC "executable"
|
||||
#define STRING_CMD_DIAG_HOOK_NO_EXEC "not executable"
|
||||
#define STRING_CMD_DIAG_HOOK_ENABLE "Enabled"
|
||||
#define STRING_CMD_DIAG_HOOK_DISABLE "Disabled"
|
||||
|
||||
#define STRING_CMD_COMMANDS_USAGE "Generates a list of all commands, with behavior details"
|
||||
#define STRING_CMD_HCOMMANDS_USAGE "Gera uma lista com todos os comandos, para fins de terminação automática"
|
||||
#define STRING_CMD_ZSHCOMMANDS_USAGE "Gera uma lista com todos os comandos, para terminação automática em zsh"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue