mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
l10n: Eliminated STRING_EVAL_*
This commit is contained in:
parent
74eb35810f
commit
cff755aba1
11 changed files with 8 additions and 79 deletions
13
src/Eval.cpp
13
src/Eval.cpp
|
@ -33,7 +33,8 @@
|
||||||
#include <Color.h>
|
#include <Color.h>
|
||||||
#include <shared.h>
|
#include <shared.h>
|
||||||
#include <format.h>
|
#include <format.h>
|
||||||
#include <i18n.h>
|
|
||||||
|
#define STRING_EVAL_NO_EVAL "The expression could not be evaluated."
|
||||||
|
|
||||||
extern Context context;
|
extern Context context;
|
||||||
extern Task& contextTask;
|
extern Task& contextTask;
|
||||||
|
@ -221,7 +222,7 @@ void Eval::evaluatePostfixStack (
|
||||||
Variant& result) const
|
Variant& result) const
|
||||||
{
|
{
|
||||||
if (tokens.size () == 0)
|
if (tokens.size () == 0)
|
||||||
throw std::string (STRING_EVAL_NO_EXPRESSION);
|
throw std::string ("No expression to evaluate.");
|
||||||
|
|
||||||
// This is stack used by the postfix evaluator.
|
// This is stack used by the postfix evaluator.
|
||||||
std::vector <Variant> values;
|
std::vector <Variant> values;
|
||||||
|
@ -303,7 +304,7 @@ void Eval::evaluatePostfixStack (
|
||||||
else if (token.first == "_hastag_") result = left.operator_hastag (right, contextTask);
|
else if (token.first == "_hastag_") result = left.operator_hastag (right, contextTask);
|
||||||
else if (token.first == "_notag_") result = left.operator_notag (right, contextTask);
|
else if (token.first == "_notag_") result = left.operator_notag (right, contextTask);
|
||||||
else
|
else
|
||||||
throw format (STRING_EVAL_UNSUPPORTED, token.first);
|
throw format ("Unsupported operator '{1}'.", token.first);
|
||||||
|
|
||||||
values.push_back (result);
|
values.push_back (result);
|
||||||
|
|
||||||
|
@ -333,7 +334,7 @@ void Eval::evaluatePostfixStack (
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case Lexer::Type::op:
|
case Lexer::Type::op:
|
||||||
throw std::string (STRING_EVAL_OP_EXPECTED);
|
throw std::string ("Operator expected.");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case Lexer::Type::dom:
|
case Lexer::Type::dom:
|
||||||
|
@ -388,7 +389,7 @@ void Eval::evaluatePostfixStack (
|
||||||
// If there is more than one variant left on the stack, then the original
|
// If there is more than one variant left on the stack, then the original
|
||||||
// expression was not valid.
|
// expression was not valid.
|
||||||
if (values.size () != 1)
|
if (values.size () != 1)
|
||||||
throw std::string (STRING_EVAL_NOT_EXPRESSION);
|
throw std::string ("The value is not an expression.");
|
||||||
|
|
||||||
result = values[0];
|
result = values[0];
|
||||||
}
|
}
|
||||||
|
@ -796,7 +797,7 @@ void Eval::infixToPostfix (
|
||||||
{
|
{
|
||||||
if (op_stack.back ().first == "(" ||
|
if (op_stack.back ().first == "(" ||
|
||||||
op_stack.back ().first == ")")
|
op_stack.back ().first == ")")
|
||||||
throw std::string (STRING_PAREN_MISMATCH);
|
throw std::string ("Mismatched parentheses in expression");
|
||||||
|
|
||||||
postfix.push_back (op_stack.back ());
|
postfix.push_back (op_stack.back ());
|
||||||
op_stack.pop_back ();
|
op_stack.pop_back ();
|
||||||
|
|
|
@ -134,7 +134,7 @@ void ColumnProject::modify (Task& task, const std::string& value)
|
||||||
{
|
{
|
||||||
// If the expression failed because it didn't look like an expression,
|
// If the expression failed because it didn't look like an expression,
|
||||||
// simply store it as-is.
|
// simply store it as-is.
|
||||||
if (e == STRING_EVAL_NOT_EXPRESSION)
|
if (e == "The value is not an expression.")
|
||||||
{
|
{
|
||||||
task.set (_name, value);
|
task.set (_name, value);
|
||||||
context.debug (label + _name + " <-- '" + value + '\'');
|
context.debug (label + _name + " <-- '" + value + '\'');
|
||||||
|
|
|
@ -540,14 +540,6 @@
|
||||||
// DOM
|
// DOM
|
||||||
#define STRING_DOM_UNREC "DOM: Unbekannten Namen nicht erkannt '{1}'."
|
#define STRING_DOM_UNREC "DOM: Unbekannten Namen nicht erkannt '{1}'."
|
||||||
|
|
||||||
// Eval
|
|
||||||
#define STRING_EVAL_NO_EXPRESSION "Kein Ausdruck auszuwerten."
|
|
||||||
#define STRING_EVAL_UNSUPPORTED "Nicht unterstützter Operator: '{1}'."
|
|
||||||
#define STRING_EVAL_OP_EXPECTED "Operator erwartet."
|
|
||||||
#define STRING_EVAL_NO_EVAL "Der Ausdruck konnte nicht ausgewertet werden."
|
|
||||||
#define STRING_EVAL_NOT_EXPRESSION "The value is not an expression."
|
|
||||||
#define STRING_PAREN_MISMATCH "Ungültige Klammerung in Ausdruck."
|
|
||||||
|
|
||||||
// edit
|
// edit
|
||||||
#define STRING_EDIT_NO_CHANGES "Keine Änderungen entdeckt."
|
#define STRING_EDIT_NO_CHANGES "Keine Änderungen entdeckt."
|
||||||
#define STRING_EDIT_FAILED "Editing failed with exit code {1}."
|
#define STRING_EDIT_FAILED "Editing failed with exit code {1}."
|
||||||
|
|
|
@ -537,14 +537,6 @@
|
||||||
// DOM
|
// DOM
|
||||||
#define STRING_DOM_UNREC "DOM: Cannot get unrecognized name '{1}'."
|
#define STRING_DOM_UNREC "DOM: Cannot get unrecognized name '{1}'."
|
||||||
|
|
||||||
// Eval
|
|
||||||
#define STRING_EVAL_NO_EXPRESSION "No expression to evaluate."
|
|
||||||
#define STRING_EVAL_UNSUPPORTED "Unsupported operator '{1}'."
|
|
||||||
#define STRING_EVAL_OP_EXPECTED "Operator expected."
|
|
||||||
#define STRING_EVAL_NO_EVAL "The expression could not be evaluated."
|
|
||||||
#define STRING_EVAL_NOT_EXPRESSION "The value is not an expression."
|
|
||||||
#define STRING_PAREN_MISMATCH "Mismatched parentheses in expression"
|
|
||||||
|
|
||||||
// edit
|
// edit
|
||||||
#define STRING_EDIT_NO_CHANGES "No edits were detected."
|
#define STRING_EDIT_NO_CHANGES "No edits were detected."
|
||||||
#define STRING_EDIT_FAILED "Editing failed with exit code {1}."
|
#define STRING_EDIT_FAILED "Editing failed with exit code {1}."
|
||||||
|
|
|
@ -540,14 +540,6 @@
|
||||||
// DOM
|
// DOM
|
||||||
#define STRING_DOM_UNREC "DOM: Ne povis inspekti nekonatan nomon '{1}'."
|
#define STRING_DOM_UNREC "DOM: Ne povis inspekti nekonatan nomon '{1}'."
|
||||||
|
|
||||||
// Eval
|
|
||||||
#define STRING_EVAL_NO_EXPRESSION "Nenia esprimo por kalkuli."
|
|
||||||
#define STRING_EVAL_UNSUPPORTED "Ne subtenas infikson '{1}'."
|
|
||||||
#define STRING_EVAL_OP_EXPECTED "Anticipis infikson."
|
|
||||||
#define STRING_EVAL_NO_EVAL "Ne povis kalkuli la esprimon."
|
|
||||||
#define STRING_EVAL_NOT_EXPRESSION "The value is not an expression."
|
|
||||||
#define STRING_PAREN_MISMATCH "Malbalancataj parentezoj en esprimo"
|
|
||||||
|
|
||||||
// edit
|
// edit
|
||||||
#define STRING_EDIT_NO_CHANGES "Ne detektis nenian redakton."
|
#define STRING_EDIT_NO_CHANGES "Ne detektis nenian redakton."
|
||||||
#define STRING_EDIT_FAILED "Editing failed with exit code {1}."
|
#define STRING_EDIT_FAILED "Editing failed with exit code {1}."
|
||||||
|
|
|
@ -552,14 +552,6 @@
|
||||||
// DOM
|
// DOM
|
||||||
#define STRING_DOM_UNREC "DOM: No se pudo obtener el nombre no reconocido '{1}'."
|
#define STRING_DOM_UNREC "DOM: No se pudo obtener el nombre no reconocido '{1}'."
|
||||||
|
|
||||||
// Eval
|
|
||||||
#define STRING_EVAL_NO_EXPRESSION "Ninguna expresión para evaluar."
|
|
||||||
#define STRING_EVAL_UNSUPPORTED "Operador no soportado '{1}'."
|
|
||||||
#define STRING_EVAL_OP_EXPECTED "Se esperaba operador."
|
|
||||||
#define STRING_EVAL_NO_EVAL "La expresión podría no ser evaluada."
|
|
||||||
#define STRING_EVAL_NOT_EXPRESSION "The value is not an expression."
|
|
||||||
#define STRING_PAREN_MISMATCH "Paréntesis desemparejados en expresión"
|
|
||||||
|
|
||||||
// edit
|
// edit
|
||||||
#define STRING_EDIT_NO_CHANGES "No se detectaron modificaciones."
|
#define STRING_EDIT_NO_CHANGES "No se detectaron modificaciones."
|
||||||
#define STRING_EDIT_FAILED "Edición fallida con código de salida {1}."
|
#define STRING_EDIT_FAILED "Edición fallida con código de salida {1}."
|
||||||
|
|
|
@ -542,14 +542,6 @@
|
||||||
// DOM
|
// DOM
|
||||||
#define STRING_DOM_UNREC "DOM: Cannot get unrecognized name '{1}'."
|
#define STRING_DOM_UNREC "DOM: Cannot get unrecognized name '{1}'."
|
||||||
|
|
||||||
// Eval
|
|
||||||
#define STRING_EVAL_NO_EXPRESSION "No expression to evaluate."
|
|
||||||
#define STRING_EVAL_UNSUPPORTED "Unsupported operator '{1}'."
|
|
||||||
#define STRING_EVAL_OP_EXPECTED "Operator expected."
|
|
||||||
#define STRING_EVAL_NO_EVAL "The expression could not be evaluated."
|
|
||||||
#define STRING_EVAL_NOT_EXPRESSION "The value is not an expression."
|
|
||||||
#define STRING_PAREN_MISMATCH "Mismatched parentheses in expression"
|
|
||||||
|
|
||||||
// edit
|
// edit
|
||||||
#define STRING_EDIT_NO_CHANGES "Aucunes modifications détectées."
|
#define STRING_EDIT_NO_CHANGES "Aucunes modifications détectées."
|
||||||
#define STRING_EDIT_FAILED "Editing failed with exit code {1}."
|
#define STRING_EDIT_FAILED "Editing failed with exit code {1}."
|
||||||
|
|
|
@ -541,14 +541,6 @@
|
||||||
// DOM
|
// DOM
|
||||||
#define STRING_DOM_UNREC "DOM: Impossibile ottenere il nome non riconosciuto '{1}'."
|
#define STRING_DOM_UNREC "DOM: Impossibile ottenere il nome non riconosciuto '{1}'."
|
||||||
|
|
||||||
// Eval
|
|
||||||
#define STRING_EVAL_NO_EXPRESSION "No expression to evaluate."
|
|
||||||
#define STRING_EVAL_UNSUPPORTED "Operatore non supportato '{1}'."
|
|
||||||
#define STRING_EVAL_OP_EXPECTED "Operator expected."
|
|
||||||
#define STRING_EVAL_NO_EVAL "The expression could not be evaluated."
|
|
||||||
#define STRING_EVAL_NOT_EXPRESSION "The value is not an expression."
|
|
||||||
#define STRING_PAREN_MISMATCH "Mismatched parentheses in expression"
|
|
||||||
|
|
||||||
// edit
|
// edit
|
||||||
#define STRING_EDIT_NO_CHANGES "Nessuna modifica riscontrata."
|
#define STRING_EDIT_NO_CHANGES "Nessuna modifica riscontrata."
|
||||||
#define STRING_EDIT_FAILED "Editing failed with exit code {1}."
|
#define STRING_EDIT_FAILED "Editing failed with exit code {1}."
|
||||||
|
|
|
@ -542,14 +542,6 @@
|
||||||
// DOM
|
// DOM
|
||||||
#define STRING_DOM_UNREC "DOM: Cannot get unrecognized name '{1}'."
|
#define STRING_DOM_UNREC "DOM: Cannot get unrecognized name '{1}'."
|
||||||
|
|
||||||
// Eval
|
|
||||||
#define STRING_EVAL_NO_EXPRESSION "No expression to evaluate."
|
|
||||||
#define STRING_EVAL_UNSUPPORTED "Unsupported operator '{1}'."
|
|
||||||
#define STRING_EVAL_OP_EXPECTED "Operator expected."
|
|
||||||
#define STRING_EVAL_NO_EVAL "式を評価出来ません。"
|
|
||||||
#define STRING_EVAL_NOT_EXPRESSION "The value is not an expression."
|
|
||||||
#define STRING_PAREN_MISMATCH "Mismatched parentheses in expression"
|
|
||||||
|
|
||||||
// edit
|
// edit
|
||||||
#define STRING_EDIT_NO_CHANGES "No edits were detected."
|
#define STRING_EDIT_NO_CHANGES "No edits were detected."
|
||||||
#define STRING_EDIT_FAILED "Editing failed with exit code {1}."
|
#define STRING_EDIT_FAILED "Editing failed with exit code {1}."
|
||||||
|
|
|
@ -542,14 +542,6 @@
|
||||||
// DOM
|
// DOM
|
||||||
#define STRING_DOM_UNREC "DOM: Nie mogę pobrać nierozpoznanej nazwy '{1}'."
|
#define STRING_DOM_UNREC "DOM: Nie mogę pobrać nierozpoznanej nazwy '{1}'."
|
||||||
|
|
||||||
// Eval
|
|
||||||
#define STRING_EVAL_NO_EXPRESSION "Brak wyrażenia do przetworzenia."
|
|
||||||
#define STRING_EVAL_UNSUPPORTED "Niewspierany operator '{1}'."
|
|
||||||
#define STRING_EVAL_OP_EXPECTED "Oczekiwany operator."
|
|
||||||
#define STRING_EVAL_NO_EVAL "Wyrażenie nie może być przetworzone."
|
|
||||||
#define STRING_EVAL_NOT_EXPRESSION "The value is not an expression."
|
|
||||||
#define STRING_PAREN_MISMATCH "Niedopasowane nawiasy w wyrażeniu"
|
|
||||||
|
|
||||||
// edit
|
// edit
|
||||||
#define STRING_EDIT_NO_CHANGES "Nie znaleziono żadnych edycji."
|
#define STRING_EDIT_NO_CHANGES "Nie znaleziono żadnych edycji."
|
||||||
#define STRING_EDIT_FAILED "Editing failed with exit code {1}."
|
#define STRING_EDIT_FAILED "Editing failed with exit code {1}."
|
||||||
|
|
|
@ -542,14 +542,6 @@
|
||||||
// DOM
|
// DOM
|
||||||
#define STRING_DOM_UNREC "DOM: Não foi possível obter nome não reconhecido '{1}'."
|
#define STRING_DOM_UNREC "DOM: Não foi possível obter nome não reconhecido '{1}'."
|
||||||
|
|
||||||
// Eval
|
|
||||||
#define STRING_EVAL_NO_EXPRESSION "Nenhuma expressão a calcular."
|
|
||||||
#define STRING_EVAL_UNSUPPORTED "Operador não suportado '{1}'."
|
|
||||||
#define STRING_EVAL_OP_EXPECTED "Operador em falta."
|
|
||||||
#define STRING_EVAL_NO_EVAL "Não foi possível calcular a expressão."
|
|
||||||
#define STRING_EVAL_NOT_EXPRESSION "The value is not an expression."
|
|
||||||
#define STRING_PAREN_MISMATCH "Parentesis incompatíveis na expressão."
|
|
||||||
|
|
||||||
// edit
|
// edit
|
||||||
#define STRING_EDIT_NO_CHANGES "Não foram detetadas alterações."
|
#define STRING_EDIT_NO_CHANGES "Não foram detetadas alterações."
|
||||||
#define STRING_EDIT_FAILED "Editing failed with exit code {1}."
|
#define STRING_EDIT_FAILED "Editing failed with exit code {1}."
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue