diff --git a/src/expressionedit.cpp b/src/expressionedit.cpp
index 060f6f1..95fd189 100644
--- a/src/expressionedit.cpp
+++ b/src/expressionedit.cpp
@@ -175,17 +175,7 @@ void ExpressionTipLabel::timerEvent(QTimerEvent *e) {
}
}
bool ExpressionTipLabel::placeTip(const QPoint &pos, const QRect &completion_rect) {
-#if (QT_VERSION >= QT_VERSION_CHECK(5, 10, 0))
-# if (QT_VERSION >= QT_VERSION_CHECK(5, 14, 0))
- QScreen *scr = widget->screen();
-# else
- QScreen *scr = QGuiApplication::screenAt(pos);
-# endif
- if(!scr) scr = QGuiApplication::primaryScreen();
- QRect screen = scr->availableGeometry();
-#else
- QRect screen = QApplication::desktop()->availableGeometry(widget);
-#endif
+ QRect screen = get_screen_geometry(widget);
QPoint p = pos;
p += QPoint(2, 16);
if(!completion_rect.isNull() && completion_rect.intersects(QRect(p, this->size()))) {
diff --git a/src/fpconversiondialog.cpp b/src/fpconversiondialog.cpp
index 5bea5e7..2a31467 100644
--- a/src/fpconversiondialog.cpp
+++ b/src/fpconversiondialog.cpp
@@ -102,26 +102,52 @@ unsigned int FPConversionDialog::getSignPosition() {
void FPConversionDialog::formatChanged() {
updateFields(10);
}
-void FPConversionDialog::updateFields(int base) {
+void FPConversionDialog::updateFields(int base, const MathStructure *v) {
std::string sbin;
Number decnum;
bool use_decnum = false;
unsigned int bits = getBits();
unsigned int expbits = getExponentBits();
unsigned int sgnpos = getSignPosition();
- if(base == 10) {
- std::string str = valueEdit->text().toStdString();
- remove_blank_ends(str);
- if(str.empty()) return;
- if(last_is_operator(str, true)) return;
- EvaluationOptions eo;
- eo.parse_options = settings->evalops.parse_options;
- eo.parse_options.read_precision = DONT_READ_PRECISION;
- if(eo.parse_options.parsing_mode == PARSING_MODE_RPN || eo.parse_options.parsing_mode == PARSING_MODE_CHAIN) eo.parse_options.parsing_mode = PARSING_MODE_ADAPTIVE;
- if(!settings->simplified_percentage) eo.parse_options.parsing_mode = (ParsingMode) (eo.parse_options.parsing_mode | PARSE_PERCENT_AS_ORDINARY_CONSTANT);
- eo.parse_options.base = 10;
+ PrintOptions po;
+ po.number_fraction_format = FRACTION_DECIMAL;
+ po.interval_display = INTERVAL_DISPLAY_SIGNIFICANT_DIGITS;
+ po.use_unicode_signs = settings->printops.use_unicode_signs;
+ po.exp_display = settings->printops.exp_display;
+ po.lower_case_numbers = settings->printops.lower_case_numbers;
+ po.rounding = settings->printops.rounding;
+ po.base_display = BASE_DISPLAY_NONE;
+ po.abbreviate_names = settings->printops.abbreviate_names;
+ po.digit_grouping = settings->printops.digit_grouping;
+ po.multiplication_sign = settings->printops.multiplication_sign;
+ po.division_sign = settings->printops.division_sign;
+ po.short_multiplication = settings->printops.short_multiplication;
+ po.excessive_parenthesis = settings->printops.excessive_parenthesis;
+ po.can_display_unicode_string_function = &can_display_unicode_string_function;
+ po.can_display_unicode_string_arg = (void*) valueEdit;
+ po.spell_out_logical_operators = settings->printops.spell_out_logical_operators;
+ po.binary_bits = bits;
+ po.show_ending_zeroes = false;
+ po.min_exp = 0;
+ if(base == 10 || v) {
MathStructure value;
- CALCULATOR->calculate(&value, CALCULATOR->unlocalizeExpression(str, eo.parse_options), 1500, eo);
+ if(v) {
+ valueEdit->setText(QString::fromStdString(v->number().print(po)));
+ base = 10;
+ value.set(*v);
+ } else {
+ std::string str = valueEdit->text().toStdString();
+ remove_blank_ends(str);
+ if(str.empty()) return;
+ if(last_is_operator(str, true)) return;
+ EvaluationOptions eo;
+ eo.parse_options = settings->evalops.parse_options;
+ eo.parse_options.read_precision = DONT_READ_PRECISION;
+ if(eo.parse_options.parsing_mode == PARSING_MODE_RPN || eo.parse_options.parsing_mode == PARSING_MODE_CHAIN) eo.parse_options.parsing_mode = PARSING_MODE_ADAPTIVE;
+ if(!settings->simplified_percentage) eo.parse_options.parsing_mode = (ParsingMode) (eo.parse_options.parsing_mode | PARSE_PERCENT_AS_ORDINARY_CONSTANT);
+ eo.parse_options.base = 10;
+ CALCULATOR->calculate(&value, CALCULATOR->unlocalizeExpression(str, eo.parse_options), 1500, eo);
+ }
if(value.isNumber()) {
sbin = to_float(value.number(), bits, expbits, sgnpos);
decnum = value.number();
@@ -174,26 +200,6 @@ void FPConversionDialog::updateFields(int base) {
decEdit->clear();
errorEdit->clear();
} else {
- PrintOptions po;
- po.number_fraction_format = FRACTION_DECIMAL;
- po.interval_display = INTERVAL_DISPLAY_SIGNIFICANT_DIGITS;
- po.use_unicode_signs = settings->printops.use_unicode_signs;
- po.exp_display = settings->printops.exp_display;
- po.lower_case_numbers = settings->printops.lower_case_numbers;
- po.rounding = settings->printops.rounding;
- po.base_display = BASE_DISPLAY_NONE;
- po.abbreviate_names = settings->printops.abbreviate_names;
- po.digit_grouping = settings->printops.digit_grouping;
- po.multiplication_sign = settings->printops.multiplication_sign;
- po.division_sign = settings->printops.division_sign;
- po.short_multiplication = settings->printops.short_multiplication;
- po.excessive_parenthesis = settings->printops.excessive_parenthesis;
- po.can_display_unicode_string_function = &can_display_unicode_string_function;
- po.can_display_unicode_string_arg = (void*) valueEdit;
- po.spell_out_logical_operators = settings->printops.spell_out_logical_operators;
- po.binary_bits = bits;
- po.show_ending_zeroes = false;
- po.min_exp = 0;
int prec_bak = CALCULATOR->getPrecision();
CALCULATOR->setPrecision(100);
ParseOptions pa;
@@ -316,6 +322,13 @@ void FPConversionDialog::setValue(const QString &str) {
valueEdit->setText(str);
valueEdit->blockSignals(false);
updateFields(10);
+ valueEdit->selectAll();
+ valueEdit->setFocus();
+}
+void FPConversionDialog::setValue(const MathStructure &m) {
+ updateFields(0, &m);
+ valueEdit->selectAll();
+ valueEdit->setFocus();
}
void FPConversionDialog::setBin(const QString &str) {
binEdit->blockSignals(true);
@@ -329,12 +342,15 @@ void FPConversionDialog::setBin(const QString &str) {
binEdit->setTextCursor(cursor);
binEdit->blockSignals(false);
updateFields(2);
+ binEdit->setFocus();
}
void FPConversionDialog::setHex(const QString &str) {
hexEdit->blockSignals(true);
hexEdit->setText(str);
hexEdit->blockSignals(false);
updateFields(16);
+ hexEdit->selectAll();
+ hexEdit->setFocus();
}
void FPConversionDialog::hexChanged() {
updateFields(16);
diff --git a/src/fpconversiondialog.h b/src/fpconversiondialog.h
index 935d45f..50c7a15 100644
--- a/src/fpconversiondialog.h
+++ b/src/fpconversiondialog.h
@@ -36,7 +36,7 @@ class FPConversionDialog : public QDialog {
protected slots:
void formatChanged();
- void updateFields(int base);
+ void updateFields(int base, const MathStructure *value = NULL);
void hexChanged();
void binChanged();
void valueChanged();
@@ -44,6 +44,7 @@ class FPConversionDialog : public QDialog {
public slots:
void setValue(const QString &str);
+ void setValue(const MathStructure &m);
void setBin(const QString &str);
void setHex(const QString &str);
diff --git a/src/keypadwidget.cpp b/src/keypadwidget.cpp
index ff54498..489592d 100644
--- a/src/keypadwidget.cpp
+++ b/src/keypadwidget.cpp
@@ -528,110 +528,121 @@ KeypadWidget::KeypadWidget(QWidget *parent) : QWidget(parent) {
}
b_edit = false;
- grid = grid2;
- c = 0;
- SYMBOL_BUTTON2("(", "[", 1, c)
- button->setToolTip(tr("Left parenthesis"), tr("Left vector bracket"));
- SYMBOL_BUTTON2(")", "]", 2, c)
- button->setToolTip(tr("Right parenthesis"), tr("Right vector bracket"));
- button = new KeypadButton("(x)", this);
- button->setToolTip(tr("Smart parentheses"), tr("Vector brackets"));
- connect(button, SIGNAL(clicked()), this, SIGNAL(parenthesesClicked()));
- connect(button, SIGNAL(clicked2()), this, SIGNAL(bracketsClicked()));
- connect(button, SIGNAL(clicked3()), this, SIGNAL(bracketsClicked()));
- grid->addWidget(button, 0, c, 1, 1);
- SYMBOL_BUTTON3(QString::fromStdString(CALCULATOR->getComma()), " ", "\n", 3, c)
- button->setToolTip(tr("Argument separator"), tr("Blank space"), tr("New line"));
- commaButton = button;
- c++;
- SYMBOL_OPERATOR_SYMBOL_BUTTON("0", "⁰", "°", 3, c)
- button->setToolTip(QString(), "x0", QString::fromStdString(CALCULATOR->getDegUnit()->title(true, settings->printops.use_unicode_signs)));
- f = CALCULATOR->getActiveFunction("inv");
- if(f) {
- SYMBOL_OPERATOR_ITEM_BUTTON("1", "¹", f, 2, c)
- button->setToolTip(QString(), "x1", "1/x");
- } else {
- SYMBOL_OPERATOR_SYMBOL_BUTTON("1", "¹", "¹", 2, c)
- button->setToolTip(QString(), "x1");
- }
- SYMBOL_OPERATOR_SYMBOL_BUTTON("4", "⁴", "¼", 1, c)
- button->setToolTip(QString(), "x4", "1/4");
- SYMBOL_OPERATOR_SYMBOL_BUTTON("7", "⁷", "⅐", 0, c)
- button->setToolTip(QString(), "x7", "1/7");
- c++;
- SYMBOL_BUTTON3(QString::fromStdString(CALCULATOR->getDecimalPoint()), " ", "\n", 3, c)
- button->setToolTip(tr("Decimal point"), tr("Blank space"), tr("New line"));
- dotButton = button;
- SYMBOL_OPERATOR_SYMBOL_BUTTON("2", "²", "½", 2, c)
- button->setToolTip(QString(), "x2", "1/2");
- SYMBOL_OPERATOR_SYMBOL_BUTTON("5", "⁵", "⅕", 1, c)
- button->setToolTip(QString(), "x5", "1/5");
- SYMBOL_OPERATOR_SYMBOL_BUTTON("8", "⁸", "⅛", 0, c)
- button->setToolTip(QString(), "x8", "1/8");
- c++;
- SYMBOL_OPERATOR_SYMBOL_BUTTON("3", "³", "⅓", 2, c)
- button->setToolTip(QString(), "x3", "1/3");
- SYMBOL_OPERATOR_SYMBOL_BUTTON("6", "⁶", "⅙", 1, c)
- button->setToolTip(QString(), "x6", "1/6");
- SYMBOL_OPERATOR_SYMBOL_BUTTON("9", "⁹", "⅑", 0, c)
- button->setToolTip(QString(), "x9", "1/9");
- f = CALCULATOR->getActiveFunction("exp10"); f2 = CALCULATOR->getActiveFunction("exp2");
- if(f && f2) {
- OPERATOR_ITEM2_BUTTON("E", f, f2, 3, c);
- button->setToolTip("10x", QString::fromStdString(f->title(true, settings->printops.use_unicode_signs)), QString::fromStdString(f2->title(true, settings->printops.use_unicode_signs)));
- } else {
- OPERATOR_BUTTON("E", 3, c);
- button->setToolTip("10x");
+ for(size_t i = 0; i < 2; i++) {
+ if(i == 0) {
+ QWidget *keypadN = new QWidget(this);
+ leftStack->addWidget(keypadN);
+ grid = new QGridLayout(keypadN);
+ grid->setContentsMargins(0, 0, 0, 0);
+ } else {
+ grid = grid2;
+ }
+ c = 0;
+ SYMBOL_BUTTON2("(", "[", 1, c)
+ button->setToolTip(tr("Left parenthesis"), tr("Left vector bracket"));
+ SYMBOL_BUTTON2(")", "]", 2, c)
+ button->setToolTip(tr("Right parenthesis"), tr("Right vector bracket"));
+ button = new KeypadButton("(x)", this);
+ button->setToolTip(tr("Smart parentheses"), tr("Vector brackets"));
+ connect(button, SIGNAL(clicked()), this, SIGNAL(parenthesesClicked()));
+ connect(button, SIGNAL(clicked2()), this, SIGNAL(bracketsClicked()));
+ connect(button, SIGNAL(clicked3()), this, SIGNAL(bracketsClicked()));
+ grid->addWidget(button, 0, c, 1, 1);
+ SYMBOL_BUTTON3(QString::fromStdString(CALCULATOR->getComma()), " ", "\n", 3, c)
+ button->setToolTip(tr("Argument separator"), tr("Blank space"), tr("New line"));
+ commaButton[i] = button;
+ c++;
+ SYMBOL_OPERATOR_SYMBOL_BUTTON("0", "⁰", "°", 3, c)
+ button->setToolTip(QString(), "x0", QString::fromStdString(CALCULATOR->getDegUnit()->title(true, settings->printops.use_unicode_signs)));
+ f = CALCULATOR->getActiveFunction("inv");
+ if(f) {
+ SYMBOL_OPERATOR_ITEM_BUTTON("1", "¹", f, 2, c)
+ button->setToolTip(QString(), "x1", "1/x");
+ } else {
+ SYMBOL_OPERATOR_SYMBOL_BUTTON("1", "¹", "¹", 2, c)
+ button->setToolTip(QString(), "x1");
+ }
+ SYMBOL_OPERATOR_SYMBOL_BUTTON("4", "⁴", "¼", 1, c)
+ button->setToolTip(QString(), "x4", "1/4");
+ SYMBOL_OPERATOR_SYMBOL_BUTTON("7", "⁷", "⅐", 0, c)
+ button->setToolTip(QString(), "x7", "1/7");
+ c++;
+ SYMBOL_BUTTON3(QString::fromStdString(CALCULATOR->getDecimalPoint()), " ", "\n", 3, c)
+ button->setToolTip(tr("Decimal point"), tr("Blank space"), tr("New line"));
+ dotButton[i] = button;
+ SYMBOL_OPERATOR_SYMBOL_BUTTON("2", "²", "½", 2, c)
+ button->setToolTip(QString(), "x2", "1/2");
+ SYMBOL_OPERATOR_SYMBOL_BUTTON("5", "⁵", "⅕", 1, c)
+ button->setToolTip(QString(), "x5", "1/5");
+ SYMBOL_OPERATOR_SYMBOL_BUTTON("8", "⁸", "⅛", 0, c)
+ button->setToolTip(QString(), "x8", "1/8");
+ c++;
+ SYMBOL_OPERATOR_SYMBOL_BUTTON("3", "³", "⅓", 2, c)
+ button->setToolTip(QString(), "x3", "1/3");
+ SYMBOL_OPERATOR_SYMBOL_BUTTON("6", "⁶", "⅙", 1, c)
+ button->setToolTip(QString(), "x6", "1/6");
+ SYMBOL_OPERATOR_SYMBOL_BUTTON("9", "⁹", "⅑", 0, c)
+ button->setToolTip(QString(), "x9", "1/9");
+ f = CALCULATOR->getActiveFunction("exp10"); f2 = CALCULATOR->getActiveFunction("exp2");
+ if(f && f2) {
+ OPERATOR_ITEM2_BUTTON("E", f, f2, 3, c);
+ button->setToolTip("10x", QString::fromStdString(f->title(true, settings->printops.use_unicode_signs)), QString::fromStdString(f2->title(true, settings->printops.use_unicode_signs)));
+ } else {
+ OPERATOR_BUTTON("E", 3, c);
+ button->setToolTip("10x");
+ }
+ button->setText("EXP");
+ c++;
+ ITEM_BUTTON(settings->vans[0], "ANS", 3, c);
+ button = new KeypadButton("ANS", this);
+ button->setProperty(BUTTON_DATA, QVariant::fromValue((void*) settings->vans[0])); \
+ button->setToolTip(QString::fromStdString(settings->vans[0]->title(true, settings->printops.use_unicode_signs)), tr("Previous result (static)"));
+ connect(button, SIGNAL(clicked()), this, SLOT(onItemButtonClicked()));
+ connect(button, SIGNAL(clicked2()), this, SIGNAL(answerClicked()));
+ connect(button, SIGNAL(clicked3()), this, SIGNAL(answerClicked()));
+ grid->addWidget(button, 3, c, 1, 1);
+ OPERATOR_BUTTON3(settings->multiplicationSign(), "&", "<<", 1, c);
+ button->setToolTip(tr("Multiplication"), tr("Bitwise AND"), tr("Bitwise Shift"));
+ multiplicationButton[i] = button;
+ button = new KeypadButton(LOAD_ICON("edit-delete"), this, true);
+ connect(button, SIGNAL(clicked()), this, SIGNAL(delClicked()));
+ connect(button, SIGNAL(clicked2()), this, SIGNAL(backspaceClicked()));
+ connect(button, SIGNAL(clicked3()), this, SIGNAL(backspaceClicked()));
+ button->setToolTip(tr("Delete"), tr("Backspace"));
+ grid->addWidget(button, 0, c, 1, 1);
+ delButton[i] = button;
+ OPERATOR_SYMBOL_BUTTON("+", "+", 2, c);
+ button->setToolTip(tr("Addition"), tr("Plus"));
+ c++;
+ f = CALCULATOR->getActiveFunction("neg");
+ if(f) {
+ OPERATOR_ITEM_SYMBOL_BUTTON(SIGN_MINUS, f, SIGN_MINUS, 2, c);
+ button->setToolTip(tr("Subtraction"), QString::fromStdString(f->title(true, settings->printops.use_unicode_signs)) + " (" + QKeySequence(Qt::CTRL | Qt::Key_Minus).toString(QKeySequence::NativeText) + ")", tr("Minus"));
+ } else {
+ OPERATOR_SYMBOL_BUTTON(SIGN_MINUS, SIGN_MINUS, 2, c);
+ button->setToolTip(tr("Subtraction"), tr("Minus"));
+ }
+ OPERATOR_BUTTON3(settings->divisionSign(), "|", "~", 1, c);
+ divisionButton[i] = button;
+ button->setProperty(BUTTON_DATA, settings->divisionSign(false));
+ button->setToolTip(tr("Division"), tr("Bitwise OR"), tr("Bitwise NOT"));
+ button = new KeypadButton(LOAD_ICON("edit-clear"), this);
+ button->setToolTip(tr("Clear expression"));
+ connect(button, SIGNAL(clicked()), this, SIGNAL(clearClicked()));
+ connect(button, SIGNAL(clicked2()), this, SIGNAL(clearClicked()));
+ connect(button, SIGNAL(clicked3()), this, SIGNAL(clearClicked()));
+ grid->addWidget(button, 0, c, 1, 1);
+ acButton[i] = button;
+ button = new KeypadButton("=", this);
+ button->setToolTip(tr("Calculate expression"), QString::fromStdString(CALCULATOR->getFunctionById(FUNCTION_ID_SOLVE)->title(true, settings->printops.use_unicode_signs)));
+ button->setProperty(BUTTON_DATA, QVariant::fromValue((void*) CALCULATOR->getFunctionById(FUNCTION_ID_SOLVE))); \
+ connect(button, SIGNAL(clicked()), this, SIGNAL(equalsClicked()));
+ connect(button, SIGNAL(clicked2()), this, SLOT(onItemButtonClicked()));
+ connect(button, SIGNAL(clicked3()), this, SLOT(onItemButtonClicked()));
+ grid->addWidget(button, 3, c, 1, 1);
+ for(c = 0; c < 6; c++) grid->setColumnStretch(c, 1);
+ for(int r = 0; r < 4; r++) grid->setRowStretch(r, 1);
}
- button->setText("EXP");
- c++;
- ITEM_BUTTON(settings->vans[0], "ANS", 3, c);
- button = new KeypadButton("ANS", this);
- button->setProperty(BUTTON_DATA, QVariant::fromValue((void*) settings->vans[0])); \
- button->setToolTip(QString::fromStdString(settings->vans[0]->title(true, settings->printops.use_unicode_signs)), tr("Previous result (static)"));
- connect(button, SIGNAL(clicked()), this, SLOT(onItemButtonClicked()));
- connect(button, SIGNAL(clicked2()), this, SIGNAL(answerClicked()));
- connect(button, SIGNAL(clicked3()), this, SIGNAL(answerClicked()));
- grid->addWidget(button, 3, c, 1, 1);
- OPERATOR_BUTTON3(settings->multiplicationSign(), "&", "<<", 1, c);
- button->setToolTip(tr("Multiplication"), tr("Bitwise AND"), tr("Bitwise Shift"));
- multiplicationButton = button;
- delButton = new KeypadButton(LOAD_ICON("edit-delete"), this, true);
- connect(delButton, SIGNAL(clicked()), this, SIGNAL(delClicked()));
- connect(delButton, SIGNAL(clicked2()), this, SIGNAL(backspaceClicked()));
- connect(delButton, SIGNAL(clicked3()), this, SIGNAL(backspaceClicked()));
- delButton->setToolTip(tr("Delete"), tr("Backspace"));
- grid->addWidget(delButton, 0, c, 1, 1);
- OPERATOR_SYMBOL_BUTTON("+", "+", 2, c);
- button->setToolTip(tr("Addition"), tr("Plus"));
- c++;
- f = CALCULATOR->getActiveFunction("neg");
- if(f) {
- OPERATOR_ITEM_SYMBOL_BUTTON(SIGN_MINUS, f, SIGN_MINUS, 2, c);
- button->setToolTip(tr("Subtraction"), QString::fromStdString(f->title(true, settings->printops.use_unicode_signs)) + " (" + QKeySequence(Qt::CTRL | Qt::Key_Minus).toString(QKeySequence::NativeText) + ")", tr("Minus"));
- } else {
- OPERATOR_SYMBOL_BUTTON(SIGN_MINUS, SIGN_MINUS, 2, c);
- button->setToolTip(tr("Subtraction"), tr("Minus"));
- }
- OPERATOR_BUTTON3(settings->divisionSign(), "|", "~", 1, c);
- divisionButton = button;
- button->setProperty(BUTTON_DATA, settings->divisionSign(false));
- button->setToolTip(tr("Division"), tr("Bitwise OR"), tr("Bitwise NOT"));
- acButton = new KeypadButton(LOAD_ICON("edit-clear"), this);
- acButton->setToolTip(tr("Clear expression"));
- connect(acButton, SIGNAL(clicked()), this, SIGNAL(clearClicked()));
- connect(acButton, SIGNAL(clicked2()), this, SIGNAL(clearClicked()));
- connect(acButton, SIGNAL(clicked3()), this, SIGNAL(clearClicked()));
- grid->addWidget(acButton, 0, c, 1, 1);
- button = new KeypadButton("=", this);
- button->setToolTip(tr("Calculate expression"), QString::fromStdString(CALCULATOR->getFunctionById(FUNCTION_ID_SOLVE)->title(true, settings->printops.use_unicode_signs)));
- button->setProperty(BUTTON_DATA, QVariant::fromValue((void*) CALCULATOR->getFunctionById(FUNCTION_ID_SOLVE))); \
- connect(button, SIGNAL(clicked()), this, SIGNAL(equalsClicked()));
- connect(button, SIGNAL(clicked2()), this, SLOT(onItemButtonClicked()));
- connect(button, SIGNAL(clicked3()), this, SLOT(onItemButtonClicked()));
- grid->addWidget(button, 3, c, 1, 1);
- for(c = 0; c < 6; c++) grid->setColumnStretch(c, 1);
- for(int r = 0; r < 4; r++) grid->setRowStretch(r, 1);
setKeypadType(settings->keypad_type);
}
KeypadWidget::~KeypadWidget() {}
@@ -1426,7 +1437,7 @@ void KeypadWidget::assumptionsSignActivated() {
emit expressionCalculationUpdated(0);
}
void KeypadWidget::setKeypadType(int i) {
- if(i < 0 || i > KEYPAD_CUSTOM) i = 0;
+ if(i < 0 || i > KEYPAD_NUMBERPAD) i = 0;
if(leftStack->currentIndex() == KEYPAD_PROGRAMMING && settings->programming_base_changed) {
settings->programming_base_changed = false;
emit baseClicked(BASE_DECIMAL, true, false);
@@ -1469,21 +1480,25 @@ void KeypadWidget::updateBase() {
fButton->setEnabled(base > 15);
}
void KeypadWidget::updateSymbols() {
- multiplicationButton->setText(settings->multiplicationSign());
- multiplicationButton->setText(settings->multiplicationSign());
- multiplicationButton->setProperty(BUTTON_DATA, settings->multiplicationSign());
- divisionButton->setText(settings->divisionSign());
- divisionButton->setProperty(BUTTON_DATA, settings->divisionSign(false));
- commaButton->setText(QString::fromStdString(CALCULATOR->getComma()));
- commaButton->setProperty(BUTTON_DATA, QString::fromStdString(CALCULATOR->getComma()));
- dotButton->setText(QString::fromStdString(CALCULATOR->getDecimalPoint()));
- dotButton->setProperty(BUTTON_DATA, QString::fromStdString(CALCULATOR->getDecimalPoint()));
+ for(size_t i = 0; i < 2; i++) {
+ multiplicationButton[i]->setText(settings->multiplicationSign());
+ multiplicationButton[i]->setText(settings->multiplicationSign());
+ multiplicationButton[i]->setProperty(BUTTON_DATA, settings->multiplicationSign());
+ divisionButton[i]->setText(settings->divisionSign());
+ divisionButton[i]->setProperty(BUTTON_DATA, settings->divisionSign(false));
+ commaButton[i]->setText(QString::fromStdString(CALCULATOR->getComma()));
+ commaButton[i]->setProperty(BUTTON_DATA, QString::fromStdString(CALCULATOR->getComma()));
+ dotButton[i]->setText(QString::fromStdString(CALCULATOR->getDecimalPoint()));
+ dotButton[i]->setProperty(BUTTON_DATA, QString::fromStdString(CALCULATOR->getDecimalPoint()));
+ }
imaginaryButton->setText(CALCULATOR->getVariableById(VARIABLE_ID_I)->hasName("j") > 0 ? "j" : "i");
}
void KeypadWidget::changeEvent(QEvent *e) {
if(e->type() == QEvent::PaletteChange || e->type() == QEvent::ApplicationPaletteChange) {
- acButton->setIcon(LOAD_ICON("edit-clear"));
- delButton->setIcon(LOAD_ICON("edit-delete"));
+ for(size_t i = 0; i < 2; i++) {
+ acButton[i]->setIcon(LOAD_ICON("edit-clear"));
+ delButton[i]->setIcon(LOAD_ICON("edit-delete"));
+ }
backButton->setIcon(LOAD_ICON("go-back"));
forwardButton->setIcon(LOAD_ICON("go-forward"));
customEditButton->setIcon(LOAD_ICON("document-edit"));
diff --git a/src/keypadwidget.h b/src/keypadwidget.h
index ee3716c..1b2a449 100644
--- a/src/keypadwidget.h
+++ b/src/keypadwidget.h
@@ -74,7 +74,8 @@ enum {
KEYPAD_GENERAL = 0,
KEYPAD_PROGRAMMING = 1,
KEYPAD_ALGEBRA = 2,
- KEYPAD_CUSTOM = 3
+ KEYPAD_CUSTOM = 3,
+ KEYPAD_NUMBERPAD = 4
};
class KeypadWidget : public QWidget {
@@ -88,7 +89,7 @@ class KeypadWidget : public QWidget {
protected:
- KeypadButton *sinButton, *cosButton, *tanButton, *delButton, *acButton, *backButton, *forwardButton, *dotButton, *commaButton, *multiplicationButton, *divisionButton, *imaginaryButton, *binButton, *octButton, *decButton, *hexButton, *aButton, *bButton, *cButton, *dButton, *eButton, *fButton, *unitButton, *storeButton;
+ KeypadButton *sinButton, *cosButton, *tanButton, *delButton[2], *acButton[2], *backButton, *forwardButton, *dotButton[2], *commaButton[2], *multiplicationButton[2], *divisionButton[2], *imaginaryButton, *binButton, *octButton, *decButton, *hexButton, *aButton, *bButton, *cButton, *dButton, *eButton, *fButton, *unitButton, *storeButton;
QPushButton *customOKButton;
QToolButton *customEditButton;
QVector > customButtons;
diff --git a/src/main.cpp b/src/main.cpp
index 188d56b..a125cfe 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -89,9 +89,9 @@ int main(int argc, char **argv) {
gsub("-", "_", lang);
if(lang != QLocale().name().toStdString()) {
#if (QT_VERSION >= QT_VERSION_CHECK(6, 6, 0))
- QLocale::setDefault(QLocale(QLocale(QString::fromStdString(lang)).language(), QLocale().territory(QString::fromStdString(lang))));
+ QLocale::setDefault(QLocale(QLocale(QString::fromStdString(lang)).language(), QLocale(QString::fromStdString(lang)).territory()));
#else
- QLocale::setDefault(QLocale(QLocale(QString::fromStdString(lang)).language(), QLocale().country(QString::fromStdString(lang))));
+ QLocale::setDefault(QLocale(QLocale(QString::fromStdString(lang)).language(), QLocale(QString::fromStdString(lang)).country()));
#endif
}
_putenv_s("LANG", lang.c_str());
diff --git a/src/preferencesdialog.cpp b/src/preferencesdialog.cpp
index e21898a..79c6756 100644
--- a/src/preferencesdialog.cpp
+++ b/src/preferencesdialog.cpp
@@ -20,6 +20,7 @@
#include
#include
#include
+#include
#include
#include
#include
@@ -49,19 +50,14 @@ PreferencesDialog::PreferencesDialog(QWidget *parent) : QDialog(parent) {
setWindowTitle(tr("Preferences"));
QVBoxLayout *topbox = new QVBoxLayout(this);
QTabWidget *tabs = new QTabWidget(this);
- tabs->setUsesScrollButtons(false);
topbox->addWidget(tabs);
QWidget *w1 = new QWidget(this);
QWidget *w2 = new QWidget(this);
QWidget *w3 = new QWidget(this);
QWidget *w4 = new QWidget(this);
- tabs->addTab(w1, tr("Look && Feel"));
- tabs->addTab(w2, tr("Numbers && Operators"));
- tabs->addTab(w3, tr("Units && Currencies"));
- tabs->addTab(w4, tr("Parsing && Calculation"));
QAbstractButton *box; QGridLayout *l; QComboBox *combo;
int r = 0;
- l = new QGridLayout(w1); l->setSizeConstraint(QLayout::SetFixedSize);
+ l = new QGridLayout(w1);
BOX(tr("Ignore system language (requires restart)"), settings->ignore_locale, ignoreLocaleToggled(bool));
ignoreLocaleBox = box;
QLabel *label = new QLabel(tr("Language:"), this);
@@ -99,10 +95,6 @@ PreferencesDialog::PreferencesDialog(QWidget *parent) : QDialog(parent) {
combo->setEnabled(!settings->ignore_locale);
connect(combo, SIGNAL(currentIndexChanged(int)), this, SLOT(langChanged(int)));
l->addWidget(combo, r, 1); r++; langCombo = combo;
-#ifndef _WIN32
- label->hide();
- combo->hide();
-#endif
BOX(tr("Allow multiple instances"), settings->allow_multiple_instances > 0, multipleInstancesToggled(bool));
BOX(tr("Clear history on exit"), settings->clear_history_on_exit, clearHistoryToggled(bool));
l->addWidget(new QLabel(tr("Max history lines saved:"), this), r, 0); QSpinBox *spin = new QSpinBox(this); spin->setRange(0, 100000); spin->setValue(settings->max_history_lines); connect(spin, SIGNAL(valueChanged(int)), this, SLOT(maxHistoryLinesChanged(int))); l->addWidget(spin, r, 1); r++;
@@ -166,7 +158,7 @@ PreferencesDialog::PreferencesDialog(QWidget *parent) : QDialog(parent) {
connect(button, SIGNAL(clicked()), this, SLOT(appFontClicked())); connect(box, SIGNAL(toggled(bool)), button, SLOT(setEnabled(bool)));
l->setRowStretch(r, 1);
r = 0;
- l = new QGridLayout(w4); l->setSizeConstraint(QLayout::SetFixedSize);
+ l = new QGridLayout(w4);
l->addWidget(new QLabel(tr("Expression status:"), this), r, 0);
combo = new QComboBox(this);
combo->addItem(tr("Off"), 0);
@@ -242,7 +234,7 @@ PreferencesDialog::PreferencesDialog(QWidget *parent) : QDialog(parent) {
intervalCalculationCombo = combo;
BOX(tr("Factorize result"), settings->evalops.structuring == STRUCTURING_FACTORIZE, factorizeToggled(bool));
l->setRowStretch(r, 1);
- l = new QGridLayout(w2); l->setSizeConstraint(QLayout::SetFixedSize);
+ l = new QGridLayout(w2);
r = 0;
QGridLayout *l2 = new QGridLayout();
l2->addWidget(new QLabel(tr("Two's complement output:"), this), 0, 0);
@@ -332,7 +324,7 @@ PreferencesDialog::PreferencesDialog(QWidget *parent) : QDialog(parent) {
complexFormCombo = combo;
l->addWidget(combo, r, 1); r++;
l->setRowStretch(r, 1);
- l = new QGridLayout(w3); l->setSizeConstraint(QLayout::SetFixedSize);
+ l = new QGridLayout(w3);
r = 0;
BOX(tr("Enable units"), settings->evalops.parse_options.units_enabled, unitsToggled(bool));
BOX(tr("Abbreviate names"), settings->printops.abbreviate_names, abbreviateNamesToggled(bool));
@@ -391,6 +383,27 @@ PreferencesDialog::PreferencesDialog(QWidget *parent) : QDialog(parent) {
topbox->addWidget(buttonBox);
connect(buttonBox->button(QDialogButtonBox::Close), SIGNAL(clicked()), this, SLOT(reject()));
if(settings->always_on_top) setWindowFlags(windowFlags() | Qt::WindowStaysOnTopHint);
+ QScrollArea *s1 = new QScrollArea(this);
+ QScrollArea *s2 = new QScrollArea(this);
+ QScrollArea *s3 = new QScrollArea(this);
+ QScrollArea *s4 = new QScrollArea(this);
+ s1->setWidget(w1);
+ s2->setWidget(w2);
+ s3->setWidget(w3);
+ s4->setWidget(w4);
+ QSize size = get_screen_geometry(this).size();
+ QSize sh = w1->sizeHint().expandedTo(w2->sizeHint().expandedTo(w3->sizeHint().expandedTo(w4->sizeHint())));
+ if(size.width() >= sh.width() + 100) {
+ tabs->setUsesScrollButtons(false);
+ s1->setMinimumWidth(sh.width());
+ }
+ if(size.height() >= sh.height() + 100) {
+ s1->setMinimumHeight(sh.height());
+ }
+ tabs->addTab(s1, tr("Look && Feel"));
+ tabs->addTab(s2, tr("Numbers && Operators"));
+ tabs->addTab(s3, tr("Units && Currencies"));
+ tabs->addTab(s4, tr("Parsing && Calculation"));
}
PreferencesDialog::~PreferencesDialog() {}
diff --git a/src/qalculateqtsettings.cpp b/src/qalculateqtsettings.cpp
index e7d36a8..099deb5 100644
--- a/src/qalculateqtsettings.cpp
+++ b/src/qalculateqtsettings.cpp
@@ -23,6 +23,11 @@
#include
#include
#include
+#if (QT_VERSION >= QT_VERSION_CHECK(5, 10, 0))
+# include
+#else
+# include
+#endif
#if defined _WIN32 && (QT_VERSION >= QT_VERSION_CHECK(6, 5, 0))
# include
#endif
@@ -39,6 +44,20 @@ bool can_display_unicode_string_function(const char*, void*) {
return true;
}
+QRect get_screen_geometry(QWidget *widget) {
+#if (QT_VERSION >= QT_VERSION_CHECK(5, 10, 0))
+# if (QT_VERSION >= QT_VERSION_CHECK(5, 14, 0))
+ QScreen *scr = widget->screen();
+# else
+ QScreen *scr = QGuiApplication::screenAt(pos);
+# endif
+ if(!scr) scr = QGuiApplication::primaryScreen();
+ return scr->availableGeometry();
+#else
+ return QApplication::desktop()->availableGeometry(widget);
+#endif
+}
+
std::string to_html_escaped(const std::string strpre) {
std::string str = strpre;
if(settings->printops.use_unicode_signs) {
@@ -348,7 +367,7 @@ void QalculateQtSettings::readPreferenceValue(const std::string &svar, const std
} else if(!is_workspace && svar == "use_function_dialog") {
use_function_dialog = v;
} else if(svar == "keypad_type") {
- if(v >= 0 && v <= 3) keypad_type = v;
+ if(v >= 0 && v <= 4) keypad_type = v;
} else if(svar == "programming_base_changed") {
if(keypad_type == KEYPAD_PROGRAMMING && show_keypad) programming_base_changed = v;
} else if(svar == "toolbar_style") {
@@ -2015,18 +2034,45 @@ QString QalculateQtSettings::shortcutText(int type, const std::string &value) {
switch(type) {
case SHORTCUT_TYPE_FUNCTION: {
MathFunction *f = CALCULATOR->getActiveFunction(value);
+ if(!f) break;
return QString::fromStdString(f->title(true, printops.use_unicode_signs));
}
case SHORTCUT_TYPE_FUNCTION_WITH_DIALOG: {
MathFunction *f = CALCULATOR->getActiveFunction(value);
+ if(!f) break;
return QString::fromStdString(f->title(true, printops.use_unicode_signs));
}
case SHORTCUT_TYPE_VARIABLE: {
Variable *v = CALCULATOR->getActiveVariable(value);
+ if(!v) break;
return QString::fromStdString(v->title(true, printops.use_unicode_signs));
}
case SHORTCUT_TYPE_UNIT: {
Unit *u = CALCULATOR->getActiveUnit(value);
+ if(!u) {
+ CALCULATOR->beginTemporaryStopMessages();
+ CompositeUnit cu("", "", "", value);
+ CALCULATOR->endTemporaryStopMessages();
+ if(cu.countUnits() == 0) break;
+ for(size_t i = 0; i < CALCULATOR->units.size(); i++) {
+ if(CALCULATOR->units[i]->subtype() == SUBTYPE_COMPOSITE_UNIT) {
+ CompositeUnit *cu2 = (CompositeUnit*) CALCULATOR->units[i];
+ if(cu2->countUnits() == cu.countUnits()) {
+ bool b = true;
+ for(size_t i2 = 1; i2 <= cu.countUnits(); i2++) {
+ int exp1 = 1, exp2 = 1;
+ Prefix *p1 = NULL, *p2 = NULL;
+ if(cu.get(i2, &exp1, &p1) != cu2->get(i2, &exp2, &p2) || exp1 != exp2 || p1 != p2) {
+ b = false;
+ break;
+ }
+ }
+ if(b) return QString::fromStdString(cu2->title(true, printops.use_unicode_signs));
+ }
+ }
+ }
+ return QString::fromStdString(cu.print(false, true, printops.use_unicode_signs));
+ }
return QString::fromStdString(u->title(true, printops.use_unicode_signs));
}
default: {}
@@ -2159,8 +2205,13 @@ bool QalculateQtSettings::testShortcutValue(int type, QString &value, QWidget *w
}
case SHORTCUT_TYPE_UNIT: {
if(!CALCULATOR->getActiveUnit(value.toStdString())) {
- QMessageBox::critical(w, QApplication::tr("Error"), QApplication::tr("Unit not found."), QMessageBox::Ok);
- return false;
+ CALCULATOR->beginTemporaryStopMessages();
+ CompositeUnit cu("", "", "", value.toStdString());
+ int n = 0;
+ if(CALCULATOR->endTemporaryStopMessages(NULL, &n) || n) {
+ QMessageBox::critical(w, QApplication::tr("Error"), QApplication::tr("Unit not found."), QMessageBox::Ok);
+ return false;
+ }
}
break;
}
diff --git a/src/qalculateqtsettings.h b/src/qalculateqtsettings.h
index 18fcc45..2361f93 100644
--- a/src/qalculateqtsettings.h
+++ b/src/qalculateqtsettings.h
@@ -32,6 +32,7 @@ bool can_display_unicode_string_function(const char *str, void *w);
#define USE_QUOTES(arg, f) (arg && (arg->suggestsQuotes() || arg->type() == ARGUMENT_TYPE_TEXT) && f->id() != FUNCTION_ID_BASE && f->id() != FUNCTION_ID_BIN && f->id() != FUNCTION_ID_OCT && f->id() != FUNCTION_ID_DEC && f->id() != FUNCTION_ID_HEX)
+QRect get_screen_geometry(QWidget*);
std::string to_html_escaped(const std::string str);
std::string unhtmlize(std::string str, bool b_ascii = false);
QString unhtmlize(QString str, bool b_ascii = false);
diff --git a/src/qalculatewindow.cpp b/src/qalculatewindow.cpp
index 79386c6..4dae799 100644
--- a/src/qalculatewindow.cpp
+++ b/src/qalculatewindow.cpp
@@ -759,10 +759,12 @@ QalculateWindow::QalculateWindow() : QMainWindow() {
action->setData(KEYPAD_ALGEBRA); xKeypadAction = action;
action = menu->addAction(tr("Custom"), this, SLOT(keypadTypeActivated())); action->setCheckable(true); group->addAction(action);
action->setData(KEYPAD_CUSTOM); cKeypadAction = action;
+ action = menu->addAction(tr("Number Pad"), this, SLOT(keypadTypeActivated())); action->setCheckable(true); group->addAction(action);
+ action->setData(KEYPAD_NUMBERPAD); action->setVisible(settings->hide_numpad); nKeypadAction = action;
action = menu->addAction(tr("None"), this, SLOT(keypadTypeActivated())); action->setCheckable(true); group->addAction(action);
action->setData(-1); action->setChecked(true); keypadAction = action;
menu->addSeparator();
- action = menu->addAction(tr("Hide Number Pad"), this, SLOT(hideNumpad(bool))); action->setCheckable(true); action->setChecked(settings->hide_numpad); hideNumpadAction = action;
+ action = menu->addAction(tr("Always Show Number Pad"), this, SLOT(showNumpad(bool))); action->setCheckable(true); action->setChecked(!settings->hide_numpad); showNumpadAction = action;
action = menu->addAction(tr("Separate Menu Buttons"), this, SLOT(showSeparateKeypadMenuButtons(bool))); action->setCheckable(true); action->setChecked(settings->separate_keypad_menu_buttons);
action = menu->addAction(tr("Reset Keypad Position"), this, SLOT(resetKeypadPosition())); action->setEnabled(false); resetKeypadPositionAction = action;
tb->addWidget(keypadAction_t);
@@ -863,6 +865,10 @@ QalculateWindow::QalculateWindow() : QMainWindow() {
keypadDock = new QalculateDockWidget(this, expressionEdit);
keypadDock->setObjectName("keypad-dock");
keypadDock->setWidget(keypad);
+ if(!settings->hide_numpad && get_screen_geometry(this).width() < keypad->sizeHint().width() + 50) {
+ showNumpadAction->trigger();
+ if(settings->show_keypad) nKeypadAction->trigger();
+ }
updateKeypadTitle();
keypadDock->setContextMenuPolicy(Qt::CustomContextMenu);
connect(keypadDock, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(showKeypadContextMenu(const QPoint&)));
@@ -1042,6 +1048,7 @@ void QalculateWindow::updateKeypadTitle() {
else if(settings->keypad_type == KEYPAD_PROGRAMMING) str += tr("Programming");
else if(settings->keypad_type == KEYPAD_ALGEBRA) str += tr("Algebra");
else if(settings->keypad_type == KEYPAD_CUSTOM) str += tr("Custom");
+ else if(settings->keypad_type == KEYPAD_NUMBERPAD) str += tr("Number Pad");
str += ")";
keypadDock->setWindowTitle(str);
}
@@ -1333,7 +1340,18 @@ void QalculateWindow::triggerShortcut(int type, const std::string &value) {
break;
}
case SHORTCUT_TYPE_UNIT: {
- onUnitClicked(CALCULATOR->getActiveUnit(value));
+ Unit *u = CALCULATOR->getActiveUnit(value);
+ if(!u) {
+ CALCULATOR->clearMessages();
+ CompositeUnit cu("", "", "", value);
+ if(CALCULATOR->message()) {
+ settings->displayMessages(this);
+ } else {
+ onUnitClicked(&cu);
+ }
+ } else {
+ onUnitClicked(u);
+ }
break;
}
case SHORTCUT_TYPE_OPERATOR: {
@@ -7749,10 +7767,12 @@ void QalculateWindow::newFunction() {
}
}
-void QalculateWindow::hideNumpad(bool b) {
- keypad->hideNumpad(b);
- settings->hide_numpad = b;
+void QalculateWindow::showNumpad(bool b) {
+ keypad->hideNumpad(!b);
+ settings->hide_numpad = !b;
workspace_changed = true;
+ nKeypadAction->setVisible(!b);
+ if(settings->keypad_type == KEYPAD_NUMBERPAD) gKeypadAction->trigger();
}
void QalculateWindow::showSeparateKeypadMenuButtons(bool b) {
settings->separate_keypad_menu_buttons = b;
@@ -8884,33 +8904,29 @@ void QalculateWindow::openFPConversion() {
int base = 10;
if(!expressionEdit->expressionHasChanged() && !settings->history_answer.empty()) {
if(mstruct && mstruct->isNumber()) {
- str = QString::fromStdString(unhtmlize(result_text));
- if(to_base != 0) base = to_base;
- else base = settings->printops.base;
+ fpConversionDialog->setValue(*mstruct);
}
} else if(!auto_result.empty()) {
if(mauto.isNumber()) {
- str = QString::fromStdString(unhtmlize(auto_result));
- if(to_base != 0) base = to_base;
- else base = settings->printops.base;
+ fpConversionDialog->setValue(mauto);
}
} else {
str = expressionEdit->selectedText(true);
base = settings->evalops.parse_options.base;
- }
- if(base <= BASE_FP16 && base >= BASE_FP80) base = BASE_BINARY;
- switch(base) {
- case BASE_BINARY: {
- fpConversionDialog->setBin(str);
- break;
- }
- case BASE_HEXADECIMAL: {
- fpConversionDialog->setHex(str);
- break;
- }
- default: {
- fpConversionDialog->setValue(str);
- break;
+ if(base <= BASE_FP16 && base >= BASE_FP80) base = BASE_BINARY;
+ switch(base) {
+ case BASE_BINARY: {
+ fpConversionDialog->setBin(str);
+ break;
+ }
+ case BASE_HEXADECIMAL: {
+ fpConversionDialog->setHex(str);
+ break;
+ }
+ default: {
+ fpConversionDialog->setValue(str);
+ break;
+ }
}
}
}
@@ -9874,10 +9890,11 @@ void QalculateWindow::loadWorkspace(const QString &filename) {
onBasesActivated(settings->show_bases > 0);
QAction *action = find_child_data(this, "group_keypad", settings->show_keypad == 0 ? -1 : settings->keypad_type);
if(action) action->setChecked(true);
- hideNumpadAction->setChecked(settings->hide_numpad);
+ showNumpadAction->setChecked(!settings->hide_numpad);
keypad->setKeypadType(settings->keypad_type);
updateKeypadTitle();
keypad->hideNumpad(settings->hide_numpad);
+ nKeypadAction->setVisible(settings->hide_numpad);
if(preferencesDialog) {
preferencesDialog->hide();
preferencesDialog->deleteLater();
diff --git a/src/qalculatewindow.h b/src/qalculatewindow.h
index fbb5e51..39f4bff 100644
--- a/src/qalculatewindow.h
+++ b/src/qalculatewindow.h
@@ -104,7 +104,7 @@ class QalculateWindow : public QMainWindow {
QToolBar *tb;
QToolButton *menuAction_t, *modeAction_t, *keypadAction_t, *storeAction_t, *functionsAction_t, *unitsAction_t, *toAction_t;
QMenu *tmenu, *basesMenu;
- QAction *plotAction_t, *basesAction, *customOutputBaseAction, *customInputBaseAction, *newVariableAction, *newFunctionAction, *variablesAction, *functionsAction, *unitsAction, *datasetsAction, *plotAction, *fpAction, *calendarsAction, *percentageAction, *periodicTableAction, *exratesAction, *quitAction, *helpAction, *keypadAction, *rpnAction, *chainAction, *gKeypadAction, *pKeypadAction, *xKeypadAction, *cKeypadAction, *hideNumpadAction, *resetKeypadPositionAction, *radAction, *degAction, *graAction, *normalAction, *sciAction, *engAction, *simpleAction, *copyBasesAction, *tbAction;
+ QAction *plotAction_t, *basesAction, *customOutputBaseAction, *customInputBaseAction, *newVariableAction, *newFunctionAction, *variablesAction, *functionsAction, *unitsAction, *datasetsAction, *plotAction, *fpAction, *calendarsAction, *percentageAction, *periodicTableAction, *exratesAction, *quitAction, *helpAction, *keypadAction, *rpnAction, *chainAction, *gKeypadAction, *pKeypadAction, *xKeypadAction, *cKeypadAction, *nKeypadAction, *showNumpadAction, *resetKeypadPositionAction, *radAction, *degAction, *graAction, *normalAction, *sciAction, *engAction, *simpleAction, *copyBasesAction, *tbAction;
QMenu *recentVariablesMenu, *favouriteVariablesMenu, *variablesMenu, *functionsMenu, *recentFunctionsMenu, *favouriteFunctionsMenu, *unitsMenu, *recentUnitsMenu, *favouriteUnitsMenu, *angleMenu, *toMenu;
QAction *assumptionTypeActions[5], *assumptionSignActions[6];
QMenu *recentWSMenu;
@@ -183,7 +183,7 @@ class QalculateWindow : public QMainWindow {
void onToActivated(bool = true);
void onStoreActivated();
void keypadTypeActivated();
- void hideNumpad(bool);
+ void showNumpad(bool);
void showSeparateKeypadMenuButtons(bool);
void resetKeypadPosition();
void onEMHTimeout();
diff --git a/translations/qalculate-qt_ca.ts b/translations/qalculate-qt_ca.ts
index 13d7a7f..4d042c9 100644
--- a/translations/qalculate-qt_ca.ts
+++ b/translations/qalculate-qt_ca.ts
@@ -5808,384 +5808,384 @@ Voleu sobreescriure la funció?
ExpressionEdit
-
+
matriu
-
+
vector
-
+
positiu
-
+
no positiu
-
+
negatiu
-
+
no negatiu
-
+
no zero
-
+
booleà
-
+
enter
-
+
racional
-
+
real
-
+
complex
-
+
nombre
-
+
(no matriu)
-
+
desconegut
-
+
suposicions predeterminades
-
+
Prefix:
-
+
Notació complexa d'angle o de fasor
-
+
Unitats bases
-
+
Base numèrica
-
+
Decimal codificat en binari (BCD)
-
+
Base 26 bijectiva
-
+
Nombre binari
-
+
Calendaris
-
+
Forma cis complexa
-
+
Nombre decimal
-
+
Nombre duodecimal
-
+
Forma exponencial complexa
-
+
Factors
-
+
Format binari de punt flotant de 16 bits
-
+
Format binari de punt flotant de 32 bits
-
+
Format binari de punt flotant de 64 bits
-
+
Format binari de punt flotant de 80 bits (x86)
-
+
Format binari de punt flotant de 128 bits
-
-
+
+
Fracció
-
+
Fracció decimal
-
+
Nombre hexadecimal
-
+
Latitud
-
+
Longitud
-
+
Unitats mixtes
-
+
Nombre octal
-
+
Unitat òptima
-
+
Prefix òptim
-
+
Fraccions parcials expandides
-
+
Forma polar complexa
-
+
Forma rectangular complexa
-
+
Nombres romans
-
+
Nombre sexagesimal
-
+
Format de temps
-
-
+
+
Unicode
-
+
Zona horària UTC
-
+
Desfés
-
+
Refés
-
+
Retalla
-
+
Copia
-
+
Enganxa
-
+
Suprimeix
-
+
Insereix data…
-
+
Insereix matriu…
-
+
Selleciona-ho tot
-
+
Neteja
-
+
Neteja l'historial
-
+
Compleció
-
+
Cap compleció
-
+
Compleció estricta limitada
-
+
Compleció estricta
-
+
Compleció plena limitada
-
+
Compleció plena
-
+
Compleció retardada
-
+
L'estat de l'expressió
-
+
Desactivat
-
+
-
+
-
+
Amb retard
-
+
Sense demora
-
+
Utilitzeu el mètode d’entrada
@@ -6194,358 +6194,358 @@ Voleu sobreescriure la funció?
Activa el mètode d'entrada
-
+
Matriu
-
+
Hi ha massa arguments per a %1().
-
+
argument
-
+
%1:
-
-
+
+
MC (neteja la memòria)
-
-
+
+
MS (desa a la memòria)
-
-
+
+
M+ (afegeix a la memòria)
-
-
+
+
M− (elimina de la memòria)
-
-
+
+
factoritza
-
-
+
+
expandeix
-
+
hexadecimal
-
-
+
+
nombre hexadecimal
-
+
octal
-
+
nombre octal
-
+
decimal
-
+
nombre decimal
-
+
duodecimal
-
-
+
+
nombre duodecimal
-
+
binària
-
-
+
+
nombre binari
-
+
romana
-
+
numerals romans
-
+
bijectiva
-
+
base 26 bijectiva
-
+
BCD
-
+
sexagesimal
-
+
nombre sexagesimal
-
-
+
+
latitud
-
-
+
+
longitud
-
+
punt flotant de 32 bits
-
+
punt flotant de 64 bits
-
+
punt flotant de 16 bis
-
+
punt flotant de 80 bits (x86)
-
+
punt flotant de 128 bits
-
+
temps
-
+
format de temps
-
+
bases
-
+
bases numèriques
-
-
+
+
calendaris
-
+
òptima
-
+
unitat òptima
-
+
prefix
-
+
-
-
+
+
base
-
+
unitats bases
-
+
mixta
-
+
unitats mixtes
-
+
-
+
-
-
-
+
+
+
fracció
-
-
+
+
factors
-
+
fracció parcial
-
+
fraccions parcials expandides
-
+
rectangular
-
+
cartesià
-
+
forma rectangular complexa
-
+
exponencial
-
+
forma exponencial complexa
-
+
polar
-
+
forma polar complexa
-
+
forma cis complexa
-
+
angle
-
+
notació complexa d'angle
-
+
fasor
-
+
notació complexa de fasor
-
+
zona horària UTC
-
+
base numèrica %1
-
+
Objecte de dades
@@ -6948,18 +6948,18 @@ Voleu sobreescriure la funció?
HistoryView
-
+
Insereix el valor
-
+
Insereix el text
-
-
+
+
Copia
@@ -6968,12 +6968,12 @@ Voleu sobreescriure la funció?
Copia text formatat
-
+
Copiar ASCII sense format
-
+
Selleciona-ho tot
@@ -6994,7 +6994,7 @@ i premeu el teclat Retorn.
Teclegeu una expressió matemàtica a dalt, per exemple "5 + 2 / 3", i premeu el teclat Retorn.
-
+
@@ -7002,7 +7002,7 @@ i premeu el teclat Retorn.
-
+
@@ -7010,33 +7010,33 @@ i premeu el teclat Retorn.
-
+
Protegeix
-
+
Mou al cim
-
+
Elimina
-
+
Neteja
-
+
Text:
-
-
+
+
Cerca
@@ -7044,29 +7044,29 @@ i premeu el teclat Retorn.
KeypadButton
-
-
+
+
<i>Clic dret o premuda llarga</i>: %1
-
-
+
+
<i>Clic dret</i>: %1
-
+
<i>Premuda llarga</i>: %1
-
+
Obre el menú
-
+
<i>Clic del mig</i>: %1
@@ -7151,7 +7151,7 @@ i premeu el teclat Retorn.
-
+
Interval
@@ -7222,191 +7222,191 @@ i premeu el teclat Retorn.
-
+
Expandeix les fraccions parcials
-
+
Activa les unitats en constants físics
-
+
Totes les constants
-
+
Eina de càlcul de percentatge
-
-
+
+
més
-
+
Totes les unitats
-
+
Totes les variables
-
+
Acció
-
+
Presentació d'intervals
-
+
Adaptativa
-
+
Xifres significants
-
+
Més/menys
-
+
Relatiu
-
+
-
+
Càlcul d'interval
-
+
Fórmula de variància
-
+
Aritmètica d'interval
-
+
-
+
Forma de nombre complex
-
+
Rectangular
-
+
Exponencial
-
+
Polar
-
+
Angle o fasor
-
+
Assumptions type
Tipus
-
+
Assumptions sign
Signe
-
+
Suposicions predeterminades
-
+
Nombre
-
+
Real
-
+
Racional
-
+
Enter
-
+
Booleà
-
+
Unknown assumptions sign
Desconeguda
-
+
No zero
-
+
Positiu
-
+
No negatiu
-
+
Negatiu
-
+
No positiu
@@ -7419,7 +7419,7 @@ i premeu el teclat Retorn.
-
+
Expandeix
@@ -7444,74 +7444,74 @@ i premeu el teclat Retorn.
-
+
Parèntesi esquerre
-
+
Claudàtor esquerre de vector
-
+
Parèntesi dret
-
+
Claudàtor dret de vector
-
+
Parèntesis intel·ligents
-
+
Claudàtors de vector
-
+
Separador d'arguments
-
-
+
+
Espai en blanc
-
-
+
+
Línia nova
-
+
Punt decimal
-
+
Resultat previ (estàtic)
-
+
Multiplicació
-
+
Acció del botó
-
+
Etiqueta:
@@ -7520,82 +7520,82 @@ i premeu el teclat Retorn.
Acció:
-
+
Cap
-
+
Valor:
-
+
AND bit a bit
-
+
Desplaçament bit a bit
-
+
Suprimeix
-
+
Retrocés
-
+
Addició
-
+
Més
-
-
+
+
Sostracció
-
-
+
+
Menys
-
+
Divisó
-
+
OR bit a bit
-
+
NOT bit a bit
-
+
Neteja l'expressió
-
+
Calcula l'expressió
@@ -8127,99 +8127,99 @@ i premeu el teclat Retorn.
PreferencesDialog
-
+
Aparença
-
+
Nombres i operadors
-
+
Unitats i monedes
-
+
Anàlisi i càlcul
-
+
Ignora la llengua del sistema (requereix reinici)
-
+
Permet múltiples instàncies
-
+
Neteja l'historial en surtir
-
+
-
+
Manté superior a les altres finestres
-
+
Títol de finestra:
-
+
Nom d'aplicació
-
+
Resultat
-
+
Nom d'aplicació + resultat
-
+
Espai de treball
-
+
Nom d'aplicació + espai de treball
-
+
Estil:
-
+
Default style
Predeterminat (requereix reinici)
-
-
+
+
Mode fosc
-
+
Coloritzar el resultat
@@ -8240,22 +8240,22 @@ i premeu el teclat Retorn.
Tipus de lletra personalitzat per a l'aplicació
-
+
Tipus de lletra personalitzat per al resultat:
-
+
Tipus de lletra personalitzat per a l'expressió:
-
+
Tipus de lletra personalitzat per al teclat numèric:
-
+
Tipus de lletra personalitzat per a l'aplicació:
@@ -8268,93 +8268,93 @@ i premeu el teclat Retorn.
Retard:
-
+
Expressió després del càlcul:
-
+
-
+
Neteja l'expressió
-
+
-
+
-
+
Usa les tecles del teclat per a la NPI
-
+
Mode d'anàlisi:
-
-
+
+
Adaptativa
-
+
Convencional
-
+
Primer la multiplicació implícita
-
+
Cadena
-
+
NPI
-
+
Llegeix la precisió
-
+
Limita la multiplicació implícita
-
+
Càlcul d'interval:
-
+
Fórmula de variància
-
+
Aritmètica d'interval
-
+
Factoritza el resultat
@@ -8379,13 +8379,13 @@ i premeu el teclat Retorn.
Usa la notació E en lloc de 10^x
-
+
Preferències
-
-
+
+
milliseconds
ms
@@ -8411,12 +8411,12 @@ i premeu el teclat Retorn.
Ignora els punts en els nombres
-
+
Arrodoneix els nombres a mig camí lluny de zero
-
+
Arrodoneix els nombres a mig camí al par
@@ -8425,214 +8425,214 @@ i premeu el teclat Retorn.
Indica els decimals periòdics
-
+
Idioma:
-
+
-
+
Usa el caret per XOR bit a bit
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Estat de l'expressió:
-
+
Desactivat
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Càlcul de percentatges simplificat
-
+
-
+
-
+
-
+
-
-
+
+
Binària
-
-
+
+
Hexadecimal
-
+
-
+
Automàtica
-
+
Agrupament de xifres:
-
+
Cap
-
+
Estàndar
-
+
Local
-
+
Presentació d'intervals:
-
+
Xifres significants
-
+
Interval
-
+
Més/menys
-
+
-
+
Punt mitjà
-
+
Inferior
-
+
Superior
-
+
@@ -8641,215 +8641,215 @@ i premeu el teclat Retorn.
Trunca tots els números
-
+
Forma de nombre complex:
-
+
Rectangular
-
+
Exponencial
-
+
Polar
-
+
Angle o fasor
-
+
-
+
Abrevia els noms
-
+
Una els prefixes binaris per a les unitats d'informació
-
+
Conversió automàtica d’unitats:
-
+
Cap conversió
-
+
Unitats bases
-
+
Unitats òptimes
-
+
Unitats SI òptimes
-
+
Converteix a unitats mixtes
-
+
Prefixos automàtics:
-
+
-
+
-
+
-
-
+
+
Predeterminat
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Cap prefixos
-
+
Prefixes per a les unitats seleccionades
-
+
Prefixes també per a les monedes
-
+
Prefixes per a totes les unitats
-
+
Habilita tots els prefixes SI
-
+
Habilita els prefixes de denominador
-
+
Activa les unitats en constants físics
-
+
Càlcul de temperatura:
-
+
Absolut
-
-
+
+
Relatiu
-
+
Híbrid
-
+
Actualitzacions de taxes d'intercanvi:
-
-
+
+
%n dia
@@ -8938,97 +8938,97 @@ Voleu, malgrat això, canviar el comportament predeterminat i permetre múltiple
-
-
+
+
resposta
-
+
Valor de resposta de l'historial
-
+
Índex(es) de l'historial
-
+
L'índex d'historial %s no existeix.
-
+
Última resposta
-
+
Resposta 2
-
+
Resposta 3
-
+
Resposta 4
-
+
Resposta 5
-
+
Memòria
-
-
-
-
-
-
-
+
+
+
+
+
+
+
Error
-
+
No s'ha pogut escriure les preferèncias a
%1
-
+
No s'ha trobat la funció.
-
+
No s'ha trobat la variable.
-
+
No s'ha trobat la unitat.
-
+
La base no és admesa.
-
-
+
+
@@ -9036,12 +9036,12 @@ Voleu, malgrat això, canviar el comportament predeterminat i permetre múltiple
QalculateQtSettings
-
+
Actualitza les taxes d'intercanvi?
-
+
@@ -9059,63 +9059,63 @@ Voleu actualitzar les taxes d'intercanvi ara?
S'estan obtenint les taxes d'intercanvi.
-
-
+
+
S'estan obtenint les taxes d'intercanvi…
-
-
-
-
-
+
+
+
+
+
Error
-
+
Advertiment
-
-
-
-
-
+
+
+
+
+
Informació
-
+
No s'ha trobat el camí de l'executable.
-
+
No s'ha trobat curl.
-
+
S'ha fallat en executar l'script d'actualització.
%1
-
+
S'ha fallat en cercar actualitzacions.
-
+
No s'ha trobat cap actualització.
-
+
@@ -9124,8 +9124,8 @@ Do you wish to update to version %3?
Voleu actualitzar a la versió %3?
-
-
+
+
@@ -9134,522 +9134,522 @@ You can get version %3 at %2.
Podeu aconseguir la versió %3 a %2.
-
+
-
+
-
+
Insereix una funció
-
+
Insereix una funció (diàleg)
-
+
Insereix una variable
-
+
-
+
Nega
-
+
Inverteix
-
+
Insereix una unitat
-
+
Insereix text
-
+
-
+
Insereix una data
-
+
Insereix una matriu
-
+
Insereix parèntesis intel·ligents
-
+
Converteix a altra unitat
-
+
Converteix
-
+
Converteix a la unitat òptima
-
+
Converteix a les unitats bases
-
+
Converteix al prefix òptim
-
+
Converteix a la base numèrica
-
+
Factoritza el resultat
-
+
Expandeix el resultat
-
+
Expandeix les fraccions parcials
-
+
NPI: avall
-
+
NPI: amunt
-
+
NPI: intercanvia
-
+
NPI: copia
-
+
RPN: última x
-
+
NPI: suprimeix el registre
-
+
NPI: neteja la pila
-
+
Estableix la base d'expressió
-
+
Estableix la base del resultat
-
+
Estableix la unitat d'angle com a graus
-
+
Estableix la unitat d'angle com a radians
-
+
Estableix la unitat d'angle com a gradians
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Commuta el mode NPI
-
+
-
+
Commuta el teclat programari
-
+
-
+
-
+
-
+
Cerca en l'historial
-
+
Neteja l'historial
-
+
-
+
-
+
-
+
-
+
Desa el resultat
-
+
MC (neteja la memòria)
-
+
MR (retira de la memòria)
-
+
MS (desa a la memòria)
-
+
M+ (afegeix a la memòria)
-
+
M− (elimina de la memòria)
-
+
Variable nova
-
+
Funció nova
-
+
Obre el dibuix de funcions/dades
-
+
Obre la conversió de bases numèriques
-
+
Obre la conversió de punt flotant
-
+
Obre la conversió de calendari
-
+
Obre l'eina de càlcul de percentatge
-
+
Obre la taula periòdica
-
+
Actualitza les taxes d'intercanvi
-
+
Copia el resultat
-
+
Insereix el resultat
-
+
-
+
Obre el menú
-
+
Ajuda
-
+
Surt
-
+
Commuta el mode de cadena
-
+
Commuta el manteniment amunt
-
+
-
+
Neteja l'expressió
-
+
Suprimeix
-
+
Retrocés
-
+
-
+
-
+
-
+
-
+
Amunt
-
+
Avall
-
+
Desfés
-
+
Refés
-
+
Calcula l'expressió
-
+
-
+
-
+
-
+
-
+
-
+
Predeterminat
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -9728,9 +9728,9 @@ Podeu aconseguir la versió %3 a %2.
-
-
-
+
+
+
Menú
@@ -9801,9 +9801,9 @@ Podeu aconseguir la versió %3 a %2.
-
-
-
+
+
+
Funcions
@@ -9815,17 +9815,17 @@ Podeu aconseguir la versió %3 a %2.
-
-
-
+
+
+
Unitats
-
-
-
+
+
+
Dibuixa funcions/dades
@@ -9861,7 +9861,7 @@ Podeu aconseguir la versió %3 a %2.
-
+
Dreceres de teclat
@@ -9888,7 +9888,7 @@ Podeu aconseguir la versió %3 a %2.
-
+
Quant a %1
@@ -9900,9 +9900,9 @@ Podeu aconseguir la versió %3 a %2.
-
-
-
+
+
+
Mode
@@ -10093,7 +10093,7 @@ Podeu aconseguir la versió %3 a %2.
-
+
Altre
@@ -10178,9 +10178,9 @@ Podeu aconseguir la versió %3 a %2.
-
-
-
+
+
+
Converteix
@@ -10190,9 +10190,9 @@ Podeu aconseguir la versió %3 a %2.
-
-
-
+
+
+
Desa
@@ -10207,7 +10207,7 @@ Podeu aconseguir la versió %3 a %2.
-
+
Teclat numèric
@@ -10217,7 +10217,7 @@ Podeu aconseguir la versió %3 a %2.
-
+
Bases numèriques
@@ -10254,27 +10254,27 @@ Podeu aconseguir la versió %3 a %2.
Bases numèriques (%1)
-
+
Binària:
-
+
Octal:
-
+
Decimal:
-
+
Hexadecimal:
-
+
Pila NPI
@@ -10307,253 +10307,253 @@ Podeu aconseguir la versió %3 a %2.
Neteja la pila NPI (%1)
-
+
Funció nova…
-
-
-
+
+
+
Favorits
-
-
-
+
+
+
-
+
Funcions de l'usuari
-
+
-
+
-
+
Unitats d'usuari
-
+
més
-
+
Prefixes
-
+
-
+
Variables d'usuari
-
+
-
+
Calculadora poderosa i fàcil a usar
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
Error
-
-
+
+
No s'ha pogut escriure les definicions
-
-
+
+
hexadecimal
-
-
+
+
octal
-
-
+
+
decimal
-
-
+
+
duodecimal
-
-
+
+
binària
-
-
+
+
romana
-
-
+
+
bijectiva
-
-
-
-
-
-
+
+
+
+
+
+
sexagesimal
-
-
-
-
+
+
+
+
latitud
-
-
-
-
+
+
+
+
longitud
-
-
+
+
temps
-
-
+
+
L'anàlisi de la zona horària ha fallat.
-
-
+
+
bases
-
-
+
+
calendaris
-
-
+
+
rectangular
-
-
+
+
cartesià
-
-
+
+
exponencial
-
-
+
+
polar
-
-
+
+
fasor
-
-
+
+
angle
-
-
+
+
òptima
-
-
-
-
+
+
+
+
base
-
-
+
+
mixta
-
-
+
+
fracció
-
-
+
+
factors
@@ -10563,107 +10563,118 @@ Podeu aconseguir la versió %3 a %2.
-
+
+
+
+
+
+
+
+
+
+
+
+
Copia
-
-
+
+
prefix
-
-
+
+
fracció parcial
-
-
+
+
-
-
+
+
factoritza
-
-
+
+
expandeix
-
-
-
-
+
+
+
+
S'està calculant…
-
-
-
+
+
+
Cancel·la
-
-
+
+
Operació NPI
-
+
S'està factoritzant…
-
+
S'estan expandint les fraccions parcials…
-
+
S'està expandint…
-
+
S'està convertint…
-
+
S'ha mogut el registre NPI
-
-
-
+
+
+
S'està processant…
-
-
+
+
Matriu
-
-
+
+
Mode de càlcul de temperatura
-
+
@@ -10672,69 +10683,69 @@ Si us plau, seleccioneu el mode de càlcul de temperatura
(es pot canviar el mode després en les preferències).
-
+
Absolut
-
+
Relatiu
-
+
Híbrid
-
+
-
+
-
+
-
+
Interpretació de punts
-
+
Si us plau, seleccioneu la interpretació de punts (".")
(es pot canviar això després en les preferències).
-
+
Ambdós punt i coma com a separadors decimals
-
+
Punt com a separador de millars
-
+
Només punt com a separador decimal
-
+
Mode d'anàlisi
-
+
@@ -10743,53 +10754,53 @@ Si us plau, seleccioneu la interpretació de l'expressió amb multiplicaci
(es pot canviar aixó després en les preferències).
-
+
Primer la multiplicació implícita
-
+
Convencional
-
+
Adaptativa
-
+
-
+
-
+
-
+
-
-
+
+
Afegeix acció (%1)
-
+
-
+
Drecera de teclat nova
@@ -10798,136 +10809,136 @@ Si us plau, seleccioneu la interpretació de l'expressió amb multiplicaci
Acció:
-
+
Valor:
-
+
Establiment de combinació de tecles
-
+
Premeu la combinació de tecles que voleu usar per l'acció.
-
+
-
+
La combinació de tecles ja està en ús.
Voleu reemplaçar l'acció actual (%1)?
-
+
Pregunta
-
+
Afegeix…
-
+
Edita…
-
+
Elimina
-
+
No s'ha trobat el Gnuplot
-
+
%1 (%2) necessita instal·lar-se separadament, i trobar-se en el camí de cerca d'executables, per a que funcioni el dibuix.
-
+
Example of function usage
Exemple:
-
+
RPN Enter
Introdueix
-
+
Calcula
-
+
Aplica a la pila
-
+
Insereix
-
+
-
-
-
+
+
+
-
+
-
+
-
+
No tornis a preguntar
-
+
Manté obert
-
+
Valor
-
+
Argument
-
-
-
-
+
+
+
+
%1:
@@ -10938,186 +10949,181 @@ Voleu reemplaçar l'acció actual (%1)?
-
+
General
-
+
Programari
-
+
Àlgebra
-
+
Personalitzat
-
-
+
+
Cap
-
-
-
-
-
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
<i>Clic dret o premuda llarga</i>: %1
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
Obre el menú
-
-
-
+
+
+
Bases numèriques
-
-
-
+
+
+
Roda la pila o mou el registre seleccionat amunt
-
-
-
+
+
+
Roda la pila o mou el registre seleccionat avall
-
-
-
+
+
+
Intercanvia els últims dos valors o mou el valor seleccionat al cim de la pila
-
-
-
+
+
+
Suprimeix el últim valor o el seleccionat
-
-
-
+
+
+
Introdueix el úlim valor d'abans de la darrera operació numèrica
-
-
-
+
+
+
Copia el valor seleccionat o el últim al cim de la pila
-
-
-
+
+
+
Neteja la pila NPI
-
-
+
+
Acció
-
+
Combinació de teclats
-
+
Cert
-
+
Fals
-
+
Info
-
-
+
+
optional argument
opcional
-
+
S'ha fallat en obrir %1.
diff --git a/translations/qalculate-qt_de.ts b/translations/qalculate-qt_de.ts
index 06435cc..af75189 100644
--- a/translations/qalculate-qt_de.ts
+++ b/translations/qalculate-qt_de.ts
@@ -5785,82 +5785,82 @@ Möchten Sie die Funktion überschreiben?
ExpressionEdit
-
+
Matrix
-
+
Vektor
-
+
positiv
-
+
nicht positiv
-
+
negativ
-
+
nicht negativ
-
+
ungleich null
-
+
boolesch
-
+
ganzzahlig
-
+
rational
-
+
reell
-
+
komplex
-
+
zahl
-
+
(nicht Matrix)
-
+
unbekannt
-
+
standardmäßige Annahmen
@@ -5869,7 +5869,7 @@ Möchten Sie die Funktion überschreiben?
Präfix
-
+
Präfix:
@@ -5878,7 +5878,7 @@ Möchten Sie die Funktion überschreiben?
Komplexe Winkel-/Phasenschreibweise
-
+
Basiseinheiten
@@ -5895,7 +5895,7 @@ Möchten Sie die Funktion überschreiben?
Binäre Zahlen
-
+
Kalendarien
@@ -5916,7 +5916,7 @@ Möchten Sie die Funktion überschreiben?
Komplexe Exponentialform
-
+
Faktoren
@@ -5941,8 +5941,8 @@ Möchten Sie die Funktion überschreiben?
128-Bit Fließkomma-Binärformat
-
-
+
+
Bruchteil
@@ -5951,12 +5951,12 @@ Möchten Sie die Funktion überschreiben?
Hexadezimalzahl
-
+
Breitengrad
-
+
Längengrad
@@ -5997,63 +5997,63 @@ Möchten Sie die Funktion überschreiben?
Zeitformat
-
-
+
+
Unicode
-
+
Analysierten Rechenausdruck
-
+
Aus
-
+
Mit Verzögerung
-
+
Ohne Verzögerung
-
+
Eingabemethode verwenden
-
+
UTC-Zeitzone
-
+
Rückgängig
-
+
Komplexe Winkel-/Phasorschreibweise
-
+
Zahlenbasis
-
+
BCD-Code
-
+
Bijektives Basis-26-System
@@ -6066,67 +6066,67 @@ Möchten Sie die Funktion überschreiben?
Komplexe cis-Form
-
+
Binärzahl
-
+
Komplexe cis-Form
-
+
Dezimalzahl
-
+
Duodezimalzahl
-
+
Komplexe Exponentialform
-
+
16-Bit-Gleitkomma-Binärformat
-
+
32-Bit-Gleitkomma-Binärformat
-
+
64-Bit-Gleitkomma-Binärformat
-
+
80-Bit-x86-Gleitkomma-Binärformat
-
+
128-Bit-Gleitkomma-Binärformat
-
+
Hexadezimalzahl
-
+
Gemischte Einheiten
-
+
Oktalzahl
@@ -6135,132 +6135,132 @@ Möchten Sie die Funktion überschreiben?
Optimale Einheiten
-
+
Optimale Einheit
-
+
Optimales Präfix
-
+
Erweiterte Teilbrüche
-
+
Komplexe Polarform
-
+
Komplexe rechtwinklige Form
-
+
Römische Ziffern
-
+
Sexagesimalzahl
-
+
Zeitformat
-
+
UTC-Zeitzone
-
+
Wiederholen
-
+
Ausschneiden
-
+
Kopieren
-
+
Einfügen
-
+
Löschen
-
+
Datum einfügen …
-
+
Matrix einfügen …
-
+
Alles markieren
-
+
Löschen
-
+
Verlauf löschen
-
+
Vervollständigung
-
+
Keine Vervollständigung
-
+
Eingeschränkte strenge Vervollständigung
-
+
Strenge Vervollständigung
-
+
Eingeschränkte vollständige Vervollständigung
-
+
Vollständige Vervollständigung
-
+
Verzögerte Vervollständigung
@@ -6269,368 +6269,368 @@ Möchten Sie die Funktion überschreiben?
Eingabemethode aktivieren
-
+
Matrix
-
+
Zu viele Argumente für %1().
-
+
argument
-
+
%1:
-
-
+
+
MC (memory clear – Speicher löschen)
-
-
+
+
MS (memory store – speichern)
-
-
+
+
M+ (auf Speicher addieren)
-
-
+
+
M- (von Speicher abziehen)
-
-
+
+
faktorisieren
-
-
+
+
erweitern
-
+
hexadezimal
-
-
+
+
Hexadezimalzahl
-
+
oktal
-
+
Oktalzahl
-
+
dezimal
-
+
Dezimalzahl
-
+
duodezimal
-
-
+
+
Duodezimalzahl
-
+
binär
-
-
+
+
Binärzahl
-
+
römisch
-
+
römische Ziffern
-
+
bijektiv
-
+
bijektives Basis-26-System
-
+
BCD-code
-
+
sexagesimal
-
+
Sexagesimalzahl
-
-
+
+
Breitengrad
-
-
+
+
Längengrad
-
+
32-Bit-Gleitkomma
-
+
64-Bit-Gleitkomma
-
+
16-Bit-Gleitkomma
-
+
80-Bit-x86-Gleitkomma
-
+
128-Bit-Gleitkomma
-
+
Zeit
-
+
Zeitformat
-
+
Basen
-
+
Zahlenbasen
-
-
+
+
Kalendarien
-
+
optimal
-
+
optimale Einheit
-
+
präfix
-
+
-
-
+
+
basis
-
+
Basiseinheiten
-
+
gemischt
-
+
gemischte Einheiten
-
+
-
+
-
-
-
+
+
+
Bruchteil
-
-
+
+
Faktoren
-
+
Dezimalbruch
-
+
-
+
-
+
Teilbruch
-
+
erweiterte Teilbrüche
-
+
rechtwinklig
-
+
kartesisch
-
+
komplexe Rechteckform
-
+
exponentiell
-
+
komplexe Exponentialform
-
+
polar
-
+
komplexe Polarform
-
+
komplexe cis-Form
-
+
Winkel
-
+
komplexe Winkeldarstellung
-
+
Phasor
-
+
komplexe Phaorschreibweise
-
+
Zahlenbasis %1
-
+
Datenobjekt
@@ -7042,18 +7042,18 @@ Möchten Sie die Funktion überschreiben?
HistoryView
-
+
Wert einfügen
-
+
Text einfügen
-
-
+
+
Kopieren
@@ -7062,12 +7062,12 @@ Möchten Sie die Funktion überschreiben?
Formatierten Text kopieren
-
+
Unformatiertes ASCII kopieren
-
+
Alles markieren
@@ -7088,7 +7088,7 @@ und drücken Sie die Eingabetaste.
Geben Sie oben einen mathematischen Ausdruck ein, z. B. "5 + 2 / 3", und drücken Sie die Eingabetaste.
-
+
@@ -7096,7 +7096,7 @@ und drücken Sie die Eingabetaste.
-
+
@@ -7104,33 +7104,33 @@ und drücken Sie die Eingabetaste.
-
+
Schützen
-
+
Nach oben verschieben
-
+
Entfernen
-
+
Löschen
-
+
Text:
-
-
+
+
Suche
@@ -7138,29 +7138,29 @@ und drücken Sie die Eingabetaste.
KeypadButton
-
-
+
+
<i>Rechtsklick/lang drücken</i>: %1
-
-
+
+
<i>Rechtsklick</i>: %1
-
+
<i>Lang drücken</i>: %1
-
+
Menü öffnen
-
+
<i>Mittelklick</i>: %1
@@ -7245,7 +7245,7 @@ und drücken Sie die Eingabetaste.
-
+
Intervall
@@ -7316,191 +7316,191 @@ und drücken Sie die Eingabetaste.
-
+
Expandieren von Teilbrüchen
-
+
Einheiten in physikalischen Konstanten einschalten
-
+
Alles Konstanten
-
+
Prozentrechnungswerkzeug
-
-
+
+
mehr
-
+
Alle Einheiten
-
+
Alle Variablen
-
+
Aktion
-
+
Intervall-Anzeige
-
+
Adaptiv
-
+
Signifikante Ziffern
-
+
Plus/minus
-
+
Relativ
-
+
-
+
Intervall-Berechnung
-
+
Varianzformel
-
+
Intervallarithmetik
-
+
-
+
Komplexe Zahlenform
-
+
Algebraischen Form
-
+
Exponentialform
-
+
Polarform
-
+
Winkel/Phasorschreibweise
-
+
Assumptions type
Typ
-
+
Assumptions sign
Vorzeichen
-
+
Standardannahmen
-
+
Zahl
-
+
Real
-
+
Rational
-
+
Ganzzahl
-
+
Boolescher Wert
-
+
Unknown assumptions sign
Unbekannt
-
+
Ungleich null
-
+
Positiv
-
+
Nicht negativ
-
+
Negativ
-
+
Nicht positiv
@@ -7513,7 +7513,7 @@ und drücken Sie die Eingabetaste.
-
+
Erweitern
@@ -7538,74 +7538,74 @@ und drücken Sie die Eingabetaste.
-
+
Linke Klammer
-
+
Linke Vektor-Klammer
-
+
Rechte Klammer
-
+
Rechte Vektor-Klammer
-
+
Intelligente Klammern
-
+
Vektorielle Klammern
-
+
Argumenttrennzeichen
-
-
+
+
Leerzeichen
-
-
+
+
Neue Zeile
-
+
Dezimaltrennzeichen
-
+
Voriges Ergebnis (statisch)
-
+
-
+
Aktion für Schaltfläche
-
+
Beschriftung:
@@ -7614,82 +7614,82 @@ und drücken Sie die Eingabetaste.
Aktion:
-
+
Keine
-
+
Wert:
-
+
Bitweises Und
-
+
Bitweise Verschiebung
-
+
Löschen
-
+
Backspace
-
+
-
+
Plus
-
-
+
+
Subtraktion
-
-
+
+
Minus
-
+
-
+
Bitweises Oder
-
+
Bitweises Nicht
-
+
Rechenausdruck löschen
-
+
Rechenausdruck berechnen
@@ -8245,99 +8245,99 @@ und drücken Sie die Eingabetaste.
PreferencesDialog
-
+
Aussehen && Bedienung
-
+
Zahlen && Operatoren
-
+
Einheiten && Währungen
-
+
Analysierung && Berechnung
-
+
Systemsprache ignorieren (erfordert Neustart)
-
+
Mehrere Instanzen zulassen
-
+
Verlauf beim Beenden löschen
-
+
-
+
Fenster immer im Vordergrund halten
-
+
Fenstertitel:
-
+
Name der Anwendung
-
+
Ergebnis
-
+
Anwendungsname + Ergebnis
-
+
Arbeitsbereich
-
+
Anwendungsname + Arbeitsbereich
-
+
Stil:
-
+
Default style
Standard (erfordert Neustart)
-
-
+
+
Dunkelmodus
-
+
Ergebnis einfärben
@@ -8358,22 +8358,22 @@ und drücken Sie die Eingabetaste.
Benutzerdefinierte Anwendungsschriftart
-
+
Benutzerdefinierte Ergebnisschriftart:
-
+
Benutzerdefinierte Rechenausdrucksschriftart:
-
+
Benutzerdefinierte Tastenfeld-Schriftart:
-
+
Benutzerdefinierte Anwendungsschriftart:
@@ -8386,93 +8386,93 @@ und drücken Sie die Eingabetaste.
Verzögerung:
-
+
Rechenausdruck nach Berechnung:
-
+
Rechenausdruck behalten
-
+
Rechenausdruck löschen
-
+
Durch Ergebnisse ersetzen
-
+
Durch Ergebnis ersetzen, falls kürzer
-
+
Tasten auf der Tastatur für UPN verwenden
-
+
Analysemodus:
-
-
+
+
Adaptiv
-
+
Konventionell
-
+
Implizite Multiplikation zuerst
-
+
Verkettete
-
+
UPN
-
+
Genauigkeit lesen
-
+
Implizite Multiplikation begrenzen
-
+
Intervallberechnung:
-
+
Varianzformel
-
+
Intervallarithmetik
-
+
Ergebnis faktorisieren
@@ -8497,13 +8497,13 @@ und drücken Sie die Eingabetaste.
E-Notation anstelle von 10^x verwenden
-
+
Einstellungen
-
-
+
+
milliseconds
ms
@@ -8533,12 +8533,12 @@ und drücken Sie die Eingabetaste.
Standardmäßig als unformatiertes ASCII kopieren
-
+
Halbe Zahlen von null weg runden
-
+
Halbe Zahlen auf gerade Zahlen runden
@@ -8547,214 +8547,214 @@ und drücken Sie die Eingabetaste.
Wiederholte Dezimalstellen anzeigen
-
+
Sprache:
-
+
-
+
Zirkumflex für bitweises Exklusiv-Oder verwenden
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Ergebnis formatieren
-
+
Analysierten Rechenausdruck:
-
+
Aus
-
+
-
+
-
+
-
+
Rechenausdruck in Verlauf:
-
+
Analysiert
-
+
Wie eingegeben
-
+
Wie eingegeben & analysiert
-
+
Ergebnis automatisch kopieren
-
+
Vereinfachte Prozentrechnung
-
+
-
+
-
+
-
+
-
-
+
+
Binär
-
-
+
+
Hexadezimal
-
+
-
+
Automatisch
-
+
Zifferngruppierung:
-
+
Keine
-
+
Standard
-
+
Lokal
-
+
Intervallanzeige:
-
+
Signifikante Ziffern
-
+
Intervall
-
+
Plus/minus
-
+
-
+
Mittelwert
-
+
Untere
-
+
Obere
-
+
@@ -8763,215 +8763,215 @@ und drücken Sie die Eingabetaste.
Alle Zahlen abschneiden
-
+
Komplexe form:
-
+
Algebraischen Form
-
+
Exponentialform
-
+
Polarform
-
+
Winkel/Phasorschreibweise
-
+
-
+
Namen abkürzen
-
+
Binäre Präfixe für Informationseinheiten verwenden
-
+
Automatische Einheitenumrechnung:
-
+
Keine Umrechning
-
+
Basiseinheiten
-
+
Optimale Einheiten
-
+
Optimale SI-Einheiten
-
+
In gemischte Einheiten umrechnen
-
+
Automatische Einheitenpräfixe:
-
+
Unformatiertes ASCII ohne Einheiten kopieren
-
+
-
+
-
-
+
+
Standard
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Keine Präfixe
-
+
Präfixe für einige Einheiten
-
+
Präfixe auch für Währungen
-
+
Präfixe für alle Einheiten
-
+
Alle SI-Präfixe aktivieren
-
+
Nennerpräfixe aktivieren
-
+
Einheiten in physikalischen Konstanten einschalten
-
+
Temperaturberechnung:
-
+
Absolut
-
-
+
+
Relativ
-
+
Hybrid
-
+
Wechselkurse aktualisieren:
-
-
+
+
%n Tag
@@ -9060,97 +9060,97 @@ Möchten Sie trotzdem die Standardvorgabe ändern und mehrere gleichzeitige Inst
-
-
+
+
antwort
-
+
Verlauf Antwortwert
-
+
Verlaufsindex(e)
-
+
Verlaufsindex %s existiert nicht.
-
+
Letzte Antwort
-
+
Antwort 2
-
+
Antwort 3
-
+
Antwort 4
-
+
Antwort 5
-
+
Speicher
-
-
-
-
-
-
-
+
+
+
+
+
+
+
Error
-
+
Konnte Einstellungen nicht schreiben in
%1
-
+
Funktion nicht gefunden.
-
+
Variable nicht gefunden.
-
+
Einheit nicht gefunden.
-
+
Nicht unterstützte Basis.
-
-
+
+
Nicht unterstützte Wert.
@@ -9158,12 +9158,12 @@ Möchten Sie trotzdem die Standardvorgabe ändern und mehrere gleichzeitige Inst
QalculateQtSettings
-
+
Wechselkurse aktualisieren?
-
+
@@ -9181,63 +9181,63 @@ Möchten Sie die Wechselkurse jetzt aktualisieren?
Abrufen von Wechselkursen.
-
-
+
+
Abrufen von Wechselkursen…
-
-
-
-
-
+
+
+
+
+
Error
-
+
Warnung
-
-
-
-
-
+
+
+
+
+
Information
-
+
Pfad der ausführbaren Datei nicht gefunden.
-
+
curl nicht gefunden.
-
+
Updateskript konnte nicht ausgeführt werden.
%1
-
+
Prüfung auf Updates fehlgeschlagen.
-
+
Keine Updates gefunden.
-
+
@@ -9246,8 +9246,8 @@ Do you wish to update to version %3?
Möchten Sie auf die Version %3 aktualisieren?
-
-
+
+
@@ -9256,522 +9256,522 @@ You can get version %3 at %2.
Sie können die Version %3 unter %2 erhalten.
-
+
-
+
-
+
Funktion einfügen
-
+
Funktion einfügen (Dialog)
-
+
Variable einfügen
-
+
-
+
Negieren
-
+
Invertieren
-
+
Einheit einfügen
-
+
Text einfügen
-
+
-
+
Datum einfügen
-
+
Matrix einfügen
-
+
Intelligente Klammern einfügen
-
+
In Einheit umrechnen
-
+
Umrechnen
-
+
In optimale Einheit umrechnen
-
+
In Basiseinheiten umrechnen
-
+
In optimales Präfix umrechnen
-
+
In Zahlenbasis umrechnen
-
+
Ergebnis faktorisieren
-
+
Expandieren des Ergebnisses
-
+
Expandieren von Teilbrüchen
-
+
UPN: abwärts
-
+
UPN: aufwärts
-
+
UPN: tauschen
-
+
UPN: kopieren
-
+
UPN: lastx
-
+
UPN: Register löschen
-
+
UPN: Stapel löschen
-
+
Rechenausdrucksbasis einstellen
-
+
Ergebnisbasis einstellen
-
+
Winkeleinheit auf Grad stellen
-
+
Winkeleinheit auf Bogenmaß stellen
-
+
Winkeleinheit auf Gradienten stellen
-
+
-
+
-
+
-
+
-
+
Genauigkeit umschalten
-
+
Max Dezimalen umschalten
-
+
Min Dezimalen umschalten
-
+
Min/max Dezimalen umschalten
-
+
UPN-Modus umschalten
-
+
-
+
Programmiertastenfeld ein- und ausschalten
-
+
-
+
-
+
-
+
Verlauf durchsuchen
-
+
Verlauf löschen
-
+
-
+
-
+
-
+
-
+
Ergebnis intern speichern
-
+
MC (Speicher löschen)
-
+
MR (Speicherabruf)
-
+
MS (Speicher speichern)
-
+
M+ (Speicher plus)
-
+
M- (Speicher minus)
-
+
Neue Variable
-
+
Neue Funktion
-
+
Funktionen-/Datenplotten öffnen
-
+
Zahlenbasenumrechnung öffnen
-
+
Gleitkomma-Umrechnung öffnen
-
+
Kalenderumrechnung öffnen
-
+
Prozentrechnungswerkzeug öffnen
-
+
Periodensystem öffnen
-
+
Wechselkurse aktualisieren
-
+
Ergebnis kopieren
-
+
Text einfügen
-
+
-
+
Menü öffnen
-
+
Hilfe
-
+
Beenden
-
+
Auf Methodenverkettung umschalten
-
+
Immer-im-Vordergrund umschalten
-
+
Vervollständigung einblenden (erstes Element aktivieren)
-
+
Rechenausdruck löschen
-
+
Löschen
-
+
Rücktaste
-
+
-
+
-
+
-
+
-
+
Hoch
-
+
Runter
-
+
Rückgängig
-
+
Wiederholen
-
+
Rechenausdruck berechnen
-
+
-
+
-
+
-
+
-
+
-
+
Standard
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -9850,9 +9850,9 @@ Sie können die Version %3 unter %2 erhalten.
-
-
-
+
+
+
Menü
@@ -9923,9 +9923,9 @@ Sie können die Version %3 unter %2 erhalten.
-
-
-
+
+
+
Funktionen
@@ -9937,17 +9937,17 @@ Sie können die Version %3 unter %2 erhalten.
-
-
-
+
+
+
Einheiten
-
-
-
+
+
+
Funktionen/Daten plotten
@@ -9983,7 +9983,7 @@ Sie können die Version %3 unter %2 erhalten.
-
+
Tastaturkürzel
@@ -10010,7 +10010,7 @@ Sie können die Version %3 unter %2 erhalten.
-
+
Über %1
@@ -10022,9 +10022,9 @@ Sie können die Version %3 unter %2 erhalten.
-
-
-
+
+
+
Modus
@@ -10215,7 +10215,7 @@ Sie können die Version %3 unter %2 erhalten.
-
+
Andere
@@ -10300,9 +10300,9 @@ Sie können die Version %3 unter %2 erhalten.
-
-
-
+
+
+
Umrechnen
@@ -10312,9 +10312,9 @@ Sie können die Version %3 unter %2 erhalten.
-
-
-
+
+
+
Intern speichern
@@ -10329,7 +10329,7 @@ Sie können die Version %3 unter %2 erhalten.
-
+
Tastenfeld
@@ -10339,7 +10339,7 @@ Sie können die Version %3 unter %2 erhalten.
-
+
Zahlenbasen
@@ -10376,27 +10376,27 @@ Sie können die Version %3 unter %2 erhalten.
Zahlenbasen (%1)
-
+
Binär:
-
+
Oktal:
-
+
Dezimal:
-
+
Hexadezimal:
-
+
UPN-Stapel
@@ -10429,253 +10429,253 @@ Sie können die Version %3 unter %2 erhalten.
Löschen des RPN-Stack (%1)
-
+
Neue Funktion…
-
-
-
+
+
+
Favoriten
-
-
-
+
+
+
Aktuelle
-
+
Benutzerfunktionen
-
+
Dialogfeld öffnen
-
+
Alle Funktionen anzeigen
-
+
Benutzereinheiten
-
+
mehr
-
+
Präfixe
-
+
Alle Einheiten anzeigen
-
+
Benutzervariablen
-
+
Alle Variabeln anzeigen
-
+
Leistungsstarker und einfach zu bedienender Taschenrechner
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
Error
-
-
+
+
Definitionen konnten nicht geschrieben werden
-
-
+
+
hexadezimal
-
-
+
+
oktal
-
-
+
+
dezimal
-
-
+
+
duodezimal
-
-
+
+
binär
-
-
+
+
römisch
-
-
+
+
bijektiv
-
-
-
-
-
-
+
+
+
+
+
+
sexagesimal
-
-
-
-
+
+
+
+
Breitengrad
-
-
-
-
+
+
+
+
Längengrad
-
-
+
+
Zeit
-
-
+
+
Zeitzonenanalyse fehlgeschlagen.
-
-
+
+
basen
-
-
+
+
Kalendarien
-
-
+
+
rechtwinklig
-
-
+
+
kartesisch
-
-
+
+
exponential
-
-
+
+
polar
-
-
+
+
Phasor
-
-
+
+
Winkel
-
-
+
+
optimal
-
-
-
-
+
+
+
+
basis
-
-
+
+
gemischt
-
-
+
+
Bruchteil
-
-
+
+
Faktoren
@@ -10685,107 +10685,118 @@ Sie können die Version %3 unter %2 erhalten.
-
+
+
+
+
+
+
+
+
+
+
+
+
Kopieren
-
-
+
+
präfix
-
-
+
+
Teilbruch
-
-
+
+
-
-
+
+
faktorisieren
-
-
+
+
erweitern
-
-
-
-
+
+
+
+
Berechne …
-
-
-
+
+
+
Abbruch
-
-
+
+
UPN-Operation
-
+
Faktorisiere …
-
+
Expandiere Teilbrüchen …
-
+
Expandiere …
-
+
Rechne um …
-
+
UPN-Register verschoben
-
-
-
+
+
+
Verarbeite …
-
-
+
+
Matrix
-
-
+
+
Temperaturberechnungsmodus
-
+
@@ -10794,69 +10805,69 @@ Bitte wählen Sie den Temperaturberechnungsmodus
(der Modus kann später in den Einstellungen geändert werden).
-
+
Absolut
-
+
Relativ
-
+
Hybrid
-
+
-
+
-
+
-
+
Interpretation von Punkten
-
+
Bitte wählen Sie die Interpretation der Punkte (".")
(dies kann später in den Einstellungen geändert werden).
-
+
Sowohl Punkt als auch Komma als Dezimaltrennzeichen
-
+
Punkt als Tausendertrennzeichen
-
+
Nur Punkt als Dezimaltrennzeichen
-
+
Analysemodus
-
+
@@ -10865,53 +10876,53 @@ Bitte wählen Sie die Interpretation von Ausdrücken mit implizite Multiplikatio
(dies kann später in den Einstellungen geändert werden).
-
+
Implizite Multiplikation zuerst
-
+
Konventionell
-
+
Adaptiv
-
+
-
+
-
+
-
+
-
-
+
+
Aktion hinzufügen (%1)
-
+
-
+
Neues Tastaturkürzel
@@ -10920,92 +10931,92 @@ Bitte wählen Sie die Interpretation von Ausdrücken mit implizite Multiplikatio
Aktion:
-
+
Wert:
-
+
Tastenkombination einstellen
-
+
Drücken Sie die Tastenkombination, die Sie für die Aktion verwenden möchten.
-
+
-
+
Die Tastenkombination ist bereits in Gebrauch.
Möchten Sie die aktuelle Aktion (%1) ersetzen?
-
+
Frage
-
+
Hinzufügen…
-
+
Bearbeiten…
-
+
Entfernen
-
+
Gnuplot wurde nicht gefunden
-
+
%1 (%2) muss separat installiert werden und im Suchpfad für ausführbare Dateien gefunden werden, damit das Plotten funktioniert.
-
+
Example of function usage
Beispiel:
-
+
-
-
-
+
+
+
-
+
-
+
-
+
Nicht erneut fragen
@@ -11014,46 +11025,46 @@ Möchten Sie die aktuelle Aktion (%1) ersetzen?
Beispiel:
-
+
RPN Enter
Eingeben
-
+
Berechnen
-
+
Auf Stapel anwenden
-
+
Einfügen
-
+
Offen halten
-
+
Wert
-
+
Argument
-
-
-
-
+
+
+
+
%1:
@@ -11064,180 +11075,175 @@ Möchten Sie die aktuelle Aktion (%1) ersetzen?
-
+
Allgemein
-
+
Programmier
-
+
-
+
Benutzerdefiniert
-
-
+
+
Keine
-
-
-
-
-
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
<i>Rechtsklick/lang drücken</i>: %1
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
Menü öffnen
-
-
-
+
+
+
Zahlenbasen
-
-
-
+
+
+
Drehen des Stapels oder Verschieben des ausgewählten Register nach oben
-
-
-
+
+
+
Drehen des Stapels oder Verschieben des ausgewählten Register nach unten
-
-
-
+
+
+
Vertauschen Sie die beiden oberen Werte oder verschieben Sie den ausgewählten Wert an die Spitze des Stapels
-
-
-
+
+
+
Löschen des oberen oder ausgewählten Wertes
-
-
-
+
+
+
Eingabe des obersten Wertes von vor der letzten numerischen Operation
-
-
-
+
+
+
Kopieren des ausgewählten oder obersten Wertes an die Spitze des Stapels
-
-
-
+
+
+
Löschen des UPN-Stapels
-
-
+
+
Aktion
-
+
Tastenkombination
-
+
Wahr
-
+
Falsch
-
+
Info
-
-
+
+
optional argument
optional
@@ -11248,7 +11254,7 @@ Möchten Sie die aktuelle Aktion (%1) ersetzen?
optional
-
+
Konnte %1. nicht öffnen
diff --git a/translations/qalculate-qt_es.ts b/translations/qalculate-qt_es.ts
index 00b7331..cd7b4c5 100644
--- a/translations/qalculate-qt_es.ts
+++ b/translations/qalculate-qt_es.ts
@@ -5693,112 +5693,112 @@ Do you want to overwrite the function?
ExpressionEdit
-
+
matriz
-
+
vector
-
+
positivo
-
+
no positivo
-
+
negativo
-
+
no negativo
-
+
no cero
-
+
booleano
-
+
entero
-
+
racional
-
+
real
-
+
complejo
-
+
número
-
+
(no matriz)
-
+
desconocido
-
+
suposiciones predeterminadas
-
+
Prefijo:
-
+
Notación compleja de ángulo/fasor
-
+
Unidades base
-
+
Base numérica
-
+
Decimal codificado en binario
-
+
Base biyectiva 26
@@ -5807,98 +5807,98 @@ Do you want to overwrite the function?
número binario
-
+
Número binario
-
+
Calendarios
-
+
Forma compleja cis
-
+
Número decimal
-
+
Número duodecimal
-
+
Forma compleja exponencial
-
+
Factores
-
+
Formato binario de punto flotante de 16 bits
-
+
Formato binario de punto flotante de 32 bits
-
+
Formato binario de punto flotante de 64 bits
-
+
Formato binario de punto flotante de 80 bits (x86)
-
+
Formato binario de punto flotante de 128 bits
-
-
+
+
Fracción
-
+
Fracción decimal
-
+
Número hexadecimal
-
+
Latitud
-
+
Longitud
-
+
Unidades mixtas
-
+
Número octal
@@ -5907,143 +5907,143 @@ Do you want to overwrite the function?
Unidades óptimas
-
+
Unidad óptima
-
+
Prefijo óptimo
-
+
Fracciones parciales expandidas
-
+
Forma compleja polar
-
+
Forma compleja rectangular
-
+
Números romanos
-
+
Número sexagesimal
-
+
Formato de hora
-
-
+
+
Unicode
-
+
Huso horario UTC
-
+
Deshacer
-
+
Rehacer
-
+
Cortar
-
+
Copiar
-
+
Pegar
-
+
Eliminar
-
+
Insertar fecha…
-
+
Insertar matriz…
-
+
Seleccionar todos
-
+
Limpiar
-
+
Limpiar historial
-
+
Completado
-
+
Sin completado
-
+
Completado estricto limitado
-
+
Completado estricto
-
+
Completado completo limitado
-
+
Completado completo
-
+
Completado retrasado
@@ -6052,393 +6052,393 @@ Do you want to overwrite the function?
Habilitar método de entrada
-
+
Estado de la expresión
-
+
Desactivado
-
+
-
+
-
+
Con retraso
-
+
Sin demora
-
+
Usar método de entrada
-
+
Matriz
-
+
Demasiados argumentos para %1().
-
+
argumento
-
+
%1:
-
-
+
+
MC (limpiar la memoria)
-
-
+
+
MS (guardar en la memoria)
-
-
+
+
M+ (añadir a la memoria)
-
-
+
+
M− (quitar de la memoria)
-
-
+
+
factorizar
-
-
+
+
expandir
-
+
hexadecimal
-
-
+
+
número hexadecimal
-
+
octal
-
+
número octal
-
+
decimal
-
+
número decimal
-
+
duodecimal
-
-
+
+
número duodecimal
-
+
binario
-
-
+
+
número binario
-
+
romano
-
+
números romanos
-
+
biyectivo
-
+
base biyectiva 26
-
+
decimal codificado en binario
-
+
sexagesimal
-
+
número sexagesimal
-
-
+
+
latitud
-
-
+
+
longitud
-
+
punto flotante de 32 bits
-
+
punto flotante de 64 bits
-
+
punto flotante de 16 bits
-
+
punto flotante de 80 bits (x86)
-
+
punto flotante de 128 bits
-
+
tiempo
-
+
formato de tiempo
-
+
bases
-
+
bases numéricas
-
-
+
+
calendarios
-
+
óptima
-
+
unidad óptima
-
+
prefijo
-
+
-
-
+
+
base
-
+
unidades base
-
+
mixtas
-
+
unidades mixtas
-
+
-
+
-
-
-
+
+
+
fracción
-
-
+
+
factores
-
+
fracción parcial
-
+
fracciones parciales expandidas
-
+
rectangular
-
+
cartesiano
-
+
forma compleja rectangular
-
+
exponencial
-
+
forma compleja exponencial
-
+
polar
-
+
forma compleja polar
-
+
forma compleja cis
-
+
ángulo
-
+
Notación compleja de ángulo
-
+
fasor
-
+
notación compleja de fasor
-
+
huso horario UTC
-
+
base numérica %1
-
+
Objeto de datos
@@ -6842,18 +6842,18 @@ Do you want to overwrite the function?
HistoryView
-
+
Insertar valor
-
+
Insertar texto
-
-
+
+
Copiar
@@ -6862,12 +6862,12 @@ Do you want to overwrite the function?
Copiar texto formateado
-
+
Copiar ASCII sin formato
-
+
Seleccionar todos
@@ -6888,7 +6888,7 @@ and press the enter key.
Escribe una expresión matemática encima, ej: "5 + 2 / 3", y presiona la tecla enter.
-
+
@@ -6896,7 +6896,7 @@ and press the enter key.
-
+
@@ -6904,33 +6904,33 @@ and press the enter key.
-
+
Proteger
-
+
Mover a la cima
-
+
Eliminar
-
+
Limpiar
-
+
Texto:
-
-
+
+
Buscar
@@ -6938,29 +6938,29 @@ and press the enter key.
KeypadButton
-
-
+
+
<i>Clic derecho / pulsación larga</i>: %1
-
-
+
+
<i>Clic derecho</i>: %1
-
+
<i>Pulsación larga</i>: %1
-
+
Menú abierto
-
+
<i>Clic medio</i>: %1
@@ -7045,7 +7045,7 @@ and press the enter key.
-
+
Intervalo
@@ -7116,191 +7116,191 @@ and press the enter key.
-
+
Expandir fracciones parciales
-
+
Habilitar unidades en constantes físicas
-
+
Todas las constantes
-
+
Herramienta de cálculo de porcentaje
-
-
+
+
más
-
+
Todas las unidades
-
+
Todas las variables
-
+
Acción
-
+
Visualización de intervalo
-
+
Adaptativo
-
+
Cifras significativas
-
+
Más/menos
-
+
Relativo
-
+
-
+
Cálculo de intervalo
-
+
Fórmula de varianza
-
+
Aritmética de intervalo
-
+
-
+
Forma de número complejo
-
+
Rectangular
-
+
Exponencial
-
+
Polar
-
+
Ángulo/fasor
-
+
Assumptions type
Tipo
-
+
Assumptions sign
Signo
-
+
Suposiciones predeterminadas
-
+
Número
-
+
Real
-
+
Racional
-
+
Entero
-
+
Booleano
-
+
Unknown assumptions sign
Desconocido
-
+
No cero
-
+
Positivo
-
+
No negativo
-
+
Negativo
-
+
No positivo
@@ -7313,7 +7313,7 @@ and press the enter key.
-
+
Expandir
@@ -7338,74 +7338,74 @@ and press the enter key.
-
+
Paréntesis izquierdo
-
+
Paréntesis recto izquierdo de vector
-
+
Paréntesis derecho
-
+
Paréntesis recto derecho de vector
-
+
Paréntesis inteligentes
-
+
Paréntesis rectos de vectores
-
+
Separador de argumentos
-
-
+
+
Espacio en blanco
-
-
+
+
Nueva línea
-
+
Punto decimal
-
+
Resultado anterior (estático)
-
+
Multiplicación
-
+
-
+
Etiqueta:
@@ -7414,82 +7414,82 @@ and press the enter key.
Acción:
-
+
Ninguna
-
+
Valor:
-
+
AND bit a bit
-
+
Desplazamiento bit a bit
-
+
Eliminar
-
+
Retroceso
-
+
Suma
-
+
Más
-
-
+
+
Resta
-
-
+
+
Menos
-
+
División
-
+
OR bit a bit
-
+
NOT bit a bit
-
+
Limpiar expresión
-
+
Calcular expresión
@@ -8021,99 +8021,99 @@ and press the enter key.
PreferencesDialog
-
+
Aparencia
-
+
Números y operadores
-
+
Unidades y monedas
-
+
Cálculo y análisis
-
+
Ignorar idioma del sistema (requiere reinicio)
-
+
Permitir múltiples instancias
-
+
Limpiar historial al salir
-
+
-
+
Mantener encima de otras ventanas
-
+
Título de ventana:
-
+
Nombre de aplicación
-
+
Resultado
-
+
Nombre de aplicación + resultado
-
+
Espacio de trabajo
-
+
Nombre de aplicación + espacio de trabajo
-
+
Estilo:
-
+
Default style
Predeterminado (requiere reinicio)
-
-
+
+
Modo oscuro
-
+
Colorear resultado
@@ -8134,22 +8134,22 @@ and press the enter key.
Fuente de aplicación personalizada
-
+
Fuente de resultado personalizada:
-
+
Fuente de expresión personalizada:
-
+
Fuente de teclado personalizada:
-
+
Fuente de aplicación personalizada:
@@ -8162,93 +8162,93 @@ and press the enter key.
Retraso:
-
+
Expresión después del cálculo:
-
+
Mantén la expresión
-
+
Limpiar expresión
-
+
Reemplazar con resultado
-
+
Reemplazar con resultado si es más corto
-
+
Usar teclas del teclado para RPN
-
+
Modo de análisis:
-
-
+
+
Adaptativo
-
+
Convencional
-
+
Multiplicación implícita primero
-
+
Cadena
-
+
RPN
-
+
Leer precisión
-
+
Limitar multiplicación implícita
-
+
Cálculo de intervalo:
-
+
Fórmula de varianza
-
+
Aritmética de intervalo
-
+
Factorizar resultado
@@ -8273,13 +8273,13 @@ and press the enter key.
Usar notación E en vez de 10^x
-
+
Preferencias
-
-
+
+
milliseconds
ms
@@ -8309,12 +8309,12 @@ and press the enter key.
Copiar como ASCII no formateado por defecto
-
+
Redondear números intermedios lejos de cero
-
+
Redondear números intermedios a pares
@@ -8323,214 +8323,214 @@ and press the enter key.
Indicar decimales repetidos
-
+
Idioma:
-
+
-
+
Usar circunflejo para XOR bit a bit
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Formatear resultado
-
+
Estado de la expresión:
-
+
Desactivado
-
+
-
+
-
+
-
+
Expresión en el historial:
-
+
Analizado
-
+
Ingresado
-
+
Ingresado + analizado
-
+
Copiar automáticamente el resultado
-
+
Cálculo porcentual simplificado
-
+
-
+
-
+
-
+
-
-
+
+
Binario
-
-
+
+
Hexadecimal
-
+
-
+
Automática
-
+
Agrupamiento de dígitos:
-
+
Ninguna
-
+
Estándar
-
+
Local
-
+
Visualización de intervalo:
-
+
Cifras significativas
-
+
Intervalo
-
+
Más/menos
-
+
-
+
Punto medio
-
+
Inferior
-
+
Superior
-
+
@@ -8539,215 +8539,215 @@ and press the enter key.
Truncar todos los números
-
+
Forma de número complejo:
-
+
Rectangular
-
+
Exponencial
-
+
Polar
-
+
Ángulo/fasor
-
+
-
+
Abreviar nombres
-
+
Usar prefijos binarios para unidades de información
-
+
Conversión automática de unidades:
-
+
Sin conversión
-
+
Unidades base
-
+
Unidades óptimas
-
+
Unidades del SI óptimas
-
+
Convertir a unidades mixtas
-
+
Prefijos automáticos:
-
+
Copiar como ASCII no formateado sin unidades
-
+
-
+
-
-
+
+
Predeterminado
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Ningún prefijos
-
+
Prefijos para las unidades seleccionadas
-
+
Prefijos también para monedas
-
+
Prefijos para todas las unidades
-
+
Habilitar todos los prefijos del SI
-
+
Habilitar prefijos de denominador
-
+
Habilitar unidades en constantes físicas
-
+
Cálculo de temperatura:
-
+
Absoluto
-
-
+
+
Relativo
-
+
Hibrido
-
+
Actualizaciones de tasas de cambio:
-
-
+
+
%n día
@@ -8835,97 +8835,97 @@ Si múltiples instancias están abiertas simultáneamente, solo las definiciones
-
-
+
+
respuesta
-
+
Valor de respuesta de historial
-
+
Índice(s) de historial
-
+
Índice de historial %s no existe.
-
+
Última respuesta
-
+
Respuesta 2
-
+
Respuesta 3
-
+
Respuesta 4
-
+
Respuesta 5
-
+
Memoria
-
-
-
-
-
-
-
+
+
+
+
+
+
+
Error
-
+
No se pudieron guardar las preferencias en
%1
-
+
Función no encontrada.
-
+
Variable no encontrada.
-
+
Unidad no encontrada.
-
+
Base no soportada.
-
-
+
+
@@ -8933,12 +8933,12 @@ Si múltiples instancias están abiertas simultáneamente, solo las definiciones
QalculateQtSettings
-
+
¿Actualizar tasas de cambio?
-
+
@@ -8956,63 +8956,63 @@ Do you wish to update the exchange rates now?
Buscando tasas de cambio.
-
-
+
+
Buscando tasas de cambio…
-
-
-
-
-
+
+
+
+
+
Error
-
+
Advertencia
-
-
-
-
-
+
+
+
+
+
Información
-
+
Ruta de ejecutable no encontrada.
-
+
No se encontró curl.
-
+
Error al ejecutar el script de actualización.
%1
-
+
Fallo al buscar actualizaciones.
-
+
No se encontró ninguna actualización.
-
+
@@ -9021,8 +9021,8 @@ Do you wish to update to version %3?
¿Quiere actualizar a la versión %3?
-
-
+
+
@@ -9031,522 +9031,522 @@ You can get version %3 at %2.
Puedes obtener la versión %3 en %2.
-
+
-
+
-
+
Insertar función
-
+
Insertar función (diálogo)
-
+
Insertar variable
-
+
-
+
Negar
-
+
Invertir
-
+
Insertar unidad
-
+
Insertar texto
-
+
-
+
Insertar fecha
-
+
Insertar matriz
-
+
Insertar paréntesis inteligentes
-
+
Convertir a unidad
-
+
Convertir
-
+
Convertir a unidades óptimas
-
+
Convertir a unidades base
-
+
Convertir a prefijo óptimo
-
+
Convertir a base numérica
-
+
Factorizar resultado
-
+
Expandir resultado
-
+
Expandir fracciones parciales
-
+
RPN: abajo
-
+
RPN: arriba
-
+
RPN: intercambiar
-
+
RPN: copiar
-
+
RPN: último x
-
+
RPN: eliminar registro
-
+
RPN: limpiar pila
-
+
Definir base de expresión
-
+
Definir base de resultado
-
+
Definir unidad de ángulos a grados
-
+
Definir unidad de ángulos a radianes
-
+
Definir unidad de ángulos a gradianes
-
+
-
+
-
+
-
+
-
+
Alternar precisión
-
+
Alternar decimales máximos
-
+
Alternar decimales mínimos
-
+
Alternar decimales máximos/mínimos
-
+
Alternar modo RPN
-
+
-
+
Alternar teclado de programación
-
+
-
+
-
+
-
+
Buscar historial
-
+
Limpiar historial
-
+
-
+
-
+
-
+
-
+
Guardar resultado
-
+
MC (limpiar la memoria)
-
+
-
+
MS (guardar en la memoria)
-
+
M+ (añadir a la memoria)
-
+
M− (quitar de la memoria)
-
+
Nueva variable
-
+
Nueva función
-
+
Abrir graficado de función/datos
-
+
Abrir conversión de bases numéricas
-
+
Abrir conversión de punto flotante
-
+
Abrir conversión de calendario
-
+
Abrir herramienta de cálculo de porcentaje
-
+
Abrir tabla periódica
-
+
Actualizar tasas de cambio
-
+
Copiar resultado
-
+
Insertar texto
-
+
-
+
Menú abierto
-
+
Ayuda
-
+
-
+
-
+
-
+
-
+
Limpiar expresión
-
+
Eliminar
-
+
Retroceso
-
+
-
+
-
+
-
+
-
+
Arriba
-
+
Abajo
-
+
Deshacer
-
+
Rehacer
-
+
Calcular expresión
-
+
-
+
-
+
-
+
-
+
-
+
Predeterminado
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -9625,9 +9625,9 @@ Puedes obtener la versión %3 en %2.
-
-
-
+
+
+
Menú
@@ -9698,9 +9698,9 @@ Puedes obtener la versión %3 en %2.
-
-
-
+
+
+
Funciones
@@ -9712,17 +9712,17 @@ Puedes obtener la versión %3 en %2.
-
-
-
+
+
+
Unidades
-
-
-
+
+
+
Graficar funciones/datos
@@ -9758,7 +9758,7 @@ Puedes obtener la versión %3 en %2.
-
+
Atajos de teclado
@@ -9785,7 +9785,7 @@ Puedes obtener la versión %3 en %2.
-
+
Acerca de %1
@@ -9797,9 +9797,9 @@ Puedes obtener la versión %3 en %2.
-
-
-
+
+
+
Modo
@@ -9990,7 +9990,7 @@ Puedes obtener la versión %3 en %2.
-
+
Otra
@@ -10075,9 +10075,9 @@ Puedes obtener la versión %3 en %2.
-
-
-
+
+
+
Convertir
@@ -10087,9 +10087,9 @@ Puedes obtener la versión %3 en %2.
-
-
-
+
+
+
Guardar
@@ -10104,7 +10104,7 @@ Puedes obtener la versión %3 en %2.
-
+
Teclado
@@ -10114,7 +10114,7 @@ Puedes obtener la versión %3 en %2.
-
+
Bases numéricas
@@ -10151,27 +10151,27 @@ Puedes obtener la versión %3 en %2.
Bases numéricas (%1)
-
+
Binario:
-
+
Octal:
-
+
Decimal:
-
+
Hexadecimal:
-
+
Pila RPN
@@ -10204,253 +10204,253 @@ Puedes obtener la versión %3 en %2.
Limpiar la pila RPN (%1)
-
+
Nueva función…
-
-
-
+
+
+
Favoritos
-
-
-
+
+
+
Recientes
-
+
Funciones de usuario
-
+
Abrir cuadro de diálogo
-
+
Mostrar todas las funciones
-
+
Unidades de usuario
-
+
más
-
+
Prefijos
-
+
Mostrar todas las unidades
-
+
Variables de usuario
-
+
Mostrar todas las variables
-
+
Calculadora poderosa y fácil de usar
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
Error
-
-
+
+
No se pudo guardar las definiciones
-
-
+
+
hexadecimal
-
-
+
+
octal
-
-
+
+
decimal
-
-
+
+
duodecimal
-
-
+
+
binario
-
-
+
+
romano
-
-
+
+
biyectivo
-
-
-
-
-
-
+
+
+
+
+
+
sexagesimal
-
-
-
-
+
+
+
+
latitud
-
-
-
-
+
+
+
+
longitud
-
-
+
+
tiempo
-
-
+
+
Analizado de husos horarios falló.
-
-
+
+
bases
-
-
+
+
calendarios
-
-
+
+
rectangular
-
-
+
+
cartesiano
-
-
+
+
exponencial
-
-
+
+
polar
-
-
+
+
fasor
-
-
+
+
ángulo
-
-
+
+
óptimas
-
-
-
-
+
+
+
+
base
-
-
+
+
mixtas
-
-
+
+
fracción
-
-
+
+
factores
@@ -10460,107 +10460,118 @@ Puedes obtener la versión %3 en %2.
-
+
+
+
+
+
+
+
+
+
+
+
+
Copiar
-
-
+
+
prefijo
-
-
+
+
fracción parcial
-
-
+
+
-
-
+
+
factorizar
-
-
+
+
expandir
-
-
-
-
+
+
+
+
Calculando…
-
-
-
+
+
+
Cancelar
-
-
+
+
Operación RPN
-
+
Factorizando…
-
+
Expandiendo fracciones parciales…
-
+
Expandiendo…
-
+
Convirtiendo…
-
+
Registro RPN movido
-
-
-
+
+
+
Procesando…
-
-
+
+
Matriz
-
-
+
+
Modo de cálculo de temperatura
-
+
@@ -10569,69 +10580,69 @@ Por favor seleccione el modo de cálculo de temperatura
(el modo puede ser cambiado después en las preferencias).
-
+
Absoluto
-
+
Relativo
-
+
Hibrido
-
+
Por favor seleccione la variante deseada de la función sinc.
-
+
No normalizado
-
+
Normalizado
-
+
Interpretación de los puntos
-
+
Por favor seleccione la interpretación de los puntos (\".\")
(esto puede ser cambiado después en las preferencias).
-
+
Ambos punto y coma como separadores decimales
-
+
Punto como separador de miles
-
+
Solo punto como separador decimal
-
+
Modo de análisis
-
+
@@ -10640,53 +10651,53 @@ Por favor seleccione interpretación de expresiones con multiplicación implíci
(esto puede ser cambiado después en las preferencias).
-
+
Multiplicación implícita primero
-
+
Convencional
-
+
Adaptativo
-
+
-
+
-
+
-
+
-
-
+
+
Añadir acción (%1)
-
+
-
+
Nuevo atajo de teclado
@@ -10695,136 +10706,136 @@ Por favor seleccione interpretación de expresiones con multiplicación implíci
Acción:
-
+
Valor:
-
+
Definir combinación de teclas
-
+
Presiona la combinación de teclas que quieres usar para la acción.
-
+
-
+
La combinación de teclas ta está en uso.
¿Quiere remplazar la acción actual (%1)?
-
+
Pregunta
-
+
Añadir…
-
+
Editar…
-
+
Eliminar
-
+
No se encontró Gnuplot
-
+
%1 (%2) tiene que estar instalado por separado, tiene que y encontrarse en la ruta de búsqueda para que el graficado funcione.
-
+
Example of function usage
Ejemplo:
-
+
RPN Enter
Ingresar
-
+
Calcular
-
+
Aplicar a la pila
-
+
Insertar
-
+
-
-
-
+
+
+
-
+
-
+
-
+
No preguntar de nuevo
-
+
Mantener abierto
-
+
Valor
-
+
Argumento
-
-
-
-
+
+
+
+
%1:
@@ -10835,186 +10846,181 @@ Do you wish to replace the current action (%1)?
-
+
General
-
+
Programación
-
+
Álgebra
-
+
Personalizado
-
-
+
+
Ninguna
-
-
-
-
-
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
<i>Clic derecho / pulsación larga</i>: %1
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
Menú abierto
-
-
-
+
+
+
Bases numéricas
-
-
-
+
+
+
Rotar la pila o mover el registro seleccionado hacia arriba
-
-
-
+
+
+
Rotar la pila o mover el registro seleccionado hacia abajo
-
-
-
+
+
+
Intercambiar los dos primeros valores o mover el valor seleccionado encima de la pila
-
-
-
+
+
+
Eliminar el primer valor o el valor seleccionado
-
-
-
+
+
+
Ingresar el primer valor previo a la última operación numérica
-
-
-
+
+
+
Copiar el primer valor o el seleccionado encima de la pila
-
-
-
+
+
+
Limpiar la pila RPN
-
-
+
+
Acción
-
+
Combinación de teclas
-
+
Verdadero
-
+
False
-
+
Información
-
-
+
+
optional argument
opcional
-
+
Fallo al abrir %1.
diff --git a/translations/qalculate-qt_fr.ts b/translations/qalculate-qt_fr.ts
index 9ffc932..2c49ead 100644
--- a/translations/qalculate-qt_fr.ts
+++ b/translations/qalculate-qt_fr.ts
@@ -5196,384 +5196,384 @@ Voulez-vous l'écraser ?
ExpressionEdit
-
+
matrice
-
+
vecteur
-
+
positif
-
+
négatif et non nul
-
+
négatif
-
+
positif et non nul
-
+
non nul
-
+
booléen
-
+
entier
-
+
rationnel
-
+
réel
-
+
complexe
-
+
nombre
-
+
(pas de matrice)
-
+
inconnue
-
+
suppositions par défaut
-
+
Préfixe :
-
+
Notation complexe angle/phaseur
-
+
Unités de base
-
+
Base numérique
-
+
Décimal codé binaire
-
+
Bijectif base-26
-
+
Nombre binaire
-
+
Calendriers
-
+
Forme cis complexe
-
+
Nombre décimal
-
+
Nombre duodécimal
-
+
Forme exponentielle complexe
-
+
Facteurs
-
+
Format binaire à virgule flottante - 16 bits
-
+
Format binaire à virgule flottante - 32 bits
-
+
Format binaire à virgule flottante - 64 bits
-
+
Format binaire à virgule flottante - 80 bits (x86)
-
+
Format binaire à virgule flottante - 128 bits
-
-
+
+
Fraction
-
+
Fraction décimale
-
+
Nombre hexadécimale
-
+
Latitude
-
+
Longitude
-
+
Unités mixtes
-
+
Nombre octal
-
+
Unité optimale
-
+
Préfixe optimal
-
+
Fractions partielles développées
-
+
Forme polaire complexe
-
+
Forme algébrique complexe
-
+
Chiffres romains
-
+
Nombre sexagésimal
-
+
Format de l'heure
-
-
+
+
Unicode
-
+
Fuseau horaire UTC
-
+
Défaire
-
+
Refaire
-
+
Couper
-
+
Copier
-
+
Coller
-
+
Supprimer
-
+
Insérer une date…
-
+
Insérer une matrice…
-
+
Sélectionner tout
-
+
Effacer
-
+
Effacer l'historique
-
+
Complétion
-
+
Pas de complétion
-
+
Complétion stricte limitée
-
+
Complétion stricte
-
+
Complétion complète limitée
-
+
Complétion complète
-
+
Complétion retardée
-
+
L'état de l'expression
-
+
Désactivé
-
+
-
+
-
+
Avec retard
-
+
Sans délai
-
+
Utiliser la méthode de saisie
@@ -5582,358 +5582,358 @@ Voulez-vous l'écraser ?
Activer la méthode de saisie
-
+
Matrice
-
+
Trop d'arguments pour %1().
-
+
argument
-
+
%1 :
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
factoriser
-
-
+
+
développer
-
+
hexadécimal
-
-
+
+
nombre hexadécimal
-
+
octal
-
+
nombre octal
-
+
décimal
-
+
nombre décimal
-
+
duodécimal
-
-
+
+
nombre duodécimal
-
+
binaire
-
-
+
+
nombre binaire
-
+
romain
-
+
chiffres romains
-
+
bijectif
-
+
bijectif base-26
-
+
décimal codé binaire
-
+
sexagésimal
-
+
nombre sexagésimal
-
-
+
+
latitude
-
-
+
+
longitude
-
+
Virgule flottante 32-bits
-
+
Virgule flottante 64-bits
-
+
Virgule flottante 16-bits
-
+
Virgule flottante 80-bits (x86)
-
+
Virgule flottante 128-bits
-
+
temps
-
+
format de l'heure
-
+
bases
-
+
bases numériques
-
-
+
+
calendriers
-
+
optimal
-
+
unité optimale
-
+
préfixe
-
+
-
-
+
+
base
-
+
unités de base
-
+
mixte
-
+
unités mixtes
-
+
-
+
-
-
-
+
+
+
fraction
-
-
+
+
facteurs
-
+
fraction partielle
-
+
fractions partielles développées
-
+
algébrique
-
+
cartésien
-
+
forme algébrique complexe
-
+
exponentielle
-
+
forme exponentielle complexe
-
+
polaire
-
+
forme polaire complexe
-
+
forme cis complexe
-
+
angle
-
+
notation complexe angle
-
+
phaseur
-
+
notation complexe phaseur
-
+
fuseau horaire UTC
-
+
base numérique %1
-
+
Données de l'objet
@@ -6336,18 +6336,18 @@ Voulez-vous l'écraser ?
HistoryView
-
+
Insérer valeur
-
+
Insérer texte
-
-
+
+
Copier
@@ -6356,12 +6356,12 @@ Voulez-vous l'écraser ?
Copier du texte formaté
-
+
Copier ASCII non formaté
-
+
Sélectionner tout
@@ -6382,7 +6382,7 @@ et appuyer sur le bouton entrée.
Entrer une expression mathématique au dessus, ex : "5 + 2 / 3", et appuyer sur le bouton entrée.
-
+
@@ -6390,7 +6390,7 @@ et appuyer sur le bouton entrée.
-
+
@@ -6398,33 +6398,33 @@ et appuyer sur le bouton entrée.
-
+
Protéger
-
+
Se déplacer en haut
-
+
Supprimer
-
+
Effacer
-
+
Texte :
-
-
+
+
Rechercher
@@ -6432,29 +6432,29 @@ et appuyer sur le bouton entrée.
KeypadButton
-
-
+
+
<i>Clic droit/pression longue</i> : %1
-
-
+
+
<i>Clic droit</i> : %1
-
+
<i>Pression longue</i> : %1
-
+
Ouvrir le menu
-
+
<i>Clic du milieu</i> : %1
@@ -6539,7 +6539,7 @@ et appuyer sur le bouton entrée.
-
+
Intervalle
@@ -6610,191 +6610,191 @@ et appuyer sur le bouton entrée.
-
+
Développer les fractions partielles
-
+
Activer unités en constantes physiques
-
+
所有常数
-
+
Outil de calcul de pourcentages
-
-
+
+
plus
-
+
Toutes les unités
-
+
Toutes les variables
-
+
Action
-
+
Affichage d'intervalle
-
+
Adaptif
-
+
Chiffres significatifs
-
+
Plus/moins
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Forme de nombre complexe
-
+
Algébrique
-
+
Exponentielle
-
+
Polaire
-
+
Angle/phaseur
-
+
Assumptions type
Type
-
+
Assumptions sign
Signe
-
+
Suppositions par défaut
-
+
Nombre
-
+
Réel
-
+
Rationnel
-
+
Entier
-
+
Booléen
-
+
Unknown assumptions sign
Inconnue
-
+
Non nul
-
+
Positif
-
+
Positif ou nul
-
+
Négatif
-
+
Négatif ou nul
@@ -6807,7 +6807,7 @@ et appuyer sur le bouton entrée.
-
+
Développer
@@ -6832,74 +6832,74 @@ et appuyer sur le bouton entrée.
-
+
Parenthèse gauche
-
+
Crochet gauche du vecteur
-
+
Parenthèse droite
-
+
Crochet droit du vecteur
-
+
Parenthèses intelligentes
-
+
Crochets de vecteur
-
+
Séparateur d'arguments
-
-
+
+
Espace vide
-
-
+
+
Nouvelle ligne
-
+
Virgule
-
+
Résultat précédent (statique)
-
+
Multiplication
-
+
Bouton d'action
-
+
Intitulé :
@@ -6908,82 +6908,82 @@ et appuyer sur le bouton entrée.
Action :
-
+
Aucune
-
+
Valeur :
-
+
-
+
Décalage de bits
-
+
Supprimer
-
+
Retour arrière
-
+
Addition
-
+
Plus
-
-
+
+
Soustraction
-
-
+
+
Moin
-
+
Division
-
+
-
+
-
+
Effacer l'expression
-
+
Calculer l'expression
@@ -7511,89 +7511,89 @@ et appuyer sur le bouton entrée.
PreferencesDialog
-
+
Apparence et présentation
-
+
Nombres et opérateurs
-
+
Unités et devises
-
+
Analyse et calcul
-
+
Ignorer la langue du système (redémarrage nécessaire)
-
+
Permettre plusieurs instances
-
+
Effacer l'historique à la fermeture
-
+
-
+
-
+
Titre de la fenêtre :
-
+
Nom de l'application
-
+
Résultat
-
+
Nom de l'application + résultat
-
+
Style :
-
+
Default style
Défaut (redémarrage nécessaire)
-
-
+
+
Thème sombre
-
+
Coloriser le résultat
@@ -7614,37 +7614,37 @@ et appuyer sur le bouton entrée.
Police de l'application personnalisée
-
+
Préférences
-
+
Espace de travail
-
+
Nom de l'application + espace de travail
-
+
Police personnalisée des résultats :
-
+
Police d'expression personnalisée :
-
+
Police personnalisée du clavier :
-
+
Police de l'application personnalisée :
@@ -7657,215 +7657,215 @@ et appuyer sur le bouton entrée.
Délai :
-
-
+
+
milliseconds
ms
-
+
-
+
-
+
Effacer l'expression
-
+
-
+
-
+
Utiliser les touches du clavier pour NPI
-
+
Langue :
-
+
-
+
Utiliser le caret pour le bitwise XOR
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Formater le résultat
-
+
État de l'expression :
-
+
Désactivé
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Mode d'analyse :
-
-
+
+
Adaptif
-
+
Conventionnelle
-
+
-
+
-
+
NPI
-
+
-
+
Lire précision
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Factoriser le résultat
@@ -7890,322 +7890,322 @@ et appuyer sur le bouton entrée.
Indiquer les décimales répétitives
-
+
Regroupement de chiffres :
-
+
Aucune
-
+
Standard
-
+
Local
-
+
Affichage d'intervalle :
-
+
Chiffres significatifs
-
+
Intervalle
-
+
Plus/moins
-
+
-
+
Point du milieu
-
+
Inférieure
-
+
Supérieure
-
+
-
+
-
+
-
+
Forme nombre complexe :
-
+
Algébrique
-
+
Exponentielle
-
+
Polaire
-
+
Angle/phaseur
-
+
-
+
Noms abrégés
-
+
Utiliser des préfixes binaires pour les unités d'information
-
+
-
+
Pas de conversion
-
+
Unités de base
-
+
Unités optimales
-
+
Unités SI optimales
-
+
Convertir en unités mixtes
-
+
-
+
-
+
Redémarrage nécessaire
-
+
Veuillez redémarrer l'application pour que le changement de langue prenne effet.
-
-
+
+
Défaut
-
+
-
+
-
+
-
-
+
+
Binaire
-
-
+
+
Hexadécimal
-
+
-
+
Automatique
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Pas de préfixes
-
+
Préfixes pour les unités sélectionnées
-
+
Également des préfixes pour les devises
-
+
Préfixes pour toutes les unités
-
+
-
+
Activer les préfixes du dénominateur
-
+
Activer unités en constantes physiques
-
+
-
+
-
-
+
+
-
+
-
+
Mises à jour des taux de change :
-
-
+
+
%n jour
@@ -8294,97 +8294,97 @@ Voulez-vous, malgré cela, changer le comportement par défaut et autoriser plus
-
-
+
+
résultat
-
+
-
+
Index(es) de l'historique
-
+
L'index de l'historique %s n'existe pas.
-
+
Dernier résultat
-
+
Résultat 2
-
+
Résultat 3
-
+
Résultat 4
-
+
Résultat 5
-
+
Mémoire
-
-
-
-
-
-
-
+
+
+
+
+
+
+
Erreur
-
+
Impossible d'écrire les préférences dans
%1
-
+
La fonction n'a pas été trouvée.
-
+
La variable n'a pas été trouvée.
-
+
L'unité n'a pas été trouvée.
-
+
La base n'est pas supportée.
-
-
+
+
@@ -8392,12 +8392,12 @@ Voulez-vous, malgré cela, changer le comportement par défaut et autoriser plus
QalculateQtSettings
-
+
Mises à jour des taux de change?
-
+
@@ -8415,63 +8415,63 @@ Souhaitez-vous mettre à jour les taux de change maintenant?
Récupération des taux de change.
-
-
+
+
Récupération des taux de change…
-
-
-
-
-
+
+
+
+
+
Erreur
-
+
Avertissement
-
-
-
-
-
+
+
+
+
+
Information
-
+
Impossible de trouver le chemin de l'exécutable.
-
+
Impossible de trouver curl.
-
+
Impossible d'exécuter le script de mise à jour.
%1
-
+
Échec de la vérification des mises à jour.
-
+
Aucune mise à jour trouvée.
-
+
@@ -8480,8 +8480,8 @@ Do you wish to update to version %3?
Souhaitez-vous le mettre à jour vers la version %3?
-
-
+
+
@@ -8490,522 +8490,522 @@ You can get version %3 at %2.
Vous pouvez télécharger la version %3 de %2.
-
+
-
+
%1 : %2
-
+
Insérer fonction
-
+
Insérer fonction (dialogue)
-
+
Insérer variable
-
+
-
+
-
+
Intervertir
-
+
Insérer unité
-
+
Insérer texte
-
+
-
+
Insérer date
-
+
Insérer matrice
-
+
Insérer parenthèses intelligentes
-
+
Convertir en unité
-
+
Convertir
-
+
Convertir en unité optimale
-
+
Convertir en unités de base
-
+
Convertir en préfixe optimal
-
+
Convertir en base numérique
-
+
Factoriser le résultat
-
+
Développer le résultat
-
+
Développer les fractions partielles
-
+
NPI : down
-
+
NPI : up
-
+
NPI : swap
-
+
NPI : copier
-
+
NPI : lastx
-
+
NPI : supprimer registre
-
+
NPI : vider pile
-
+
Définir la base d'expression
-
+
Définir la base de résultats
-
+
Définir l'unité d'angle en degrés
-
+
Définir l'unité d'angle en radians
-
+
Définir l'unité d'angle sur les grades
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Bascule mode NPI
-
+
-
+
Basculer le clavier de programmation
-
+
-
+
-
+
-
+
Historique des recherches
-
+
Effacer l'historique
-
+
-
+
-
+
-
+
-
+
Enregistrer résultat
-
+
-
+
-
+
-
+
-
+
-
+
Nouvelle variable
-
+
Nouvelle fonction
-
+
Ouvrir graph fonctions/données
-
+
Ouvrir convertisseur de bases numériques
-
+
Ouvrir convertisseur à virgule flottante
-
+
Ouvrir conversion calendrier
-
+
Ouvrir l'outil de calcul de pourcentages
-
+
Ouvrir le tableau périodique
-
+
Mettre à jour les taux de change
-
+
Copier le résultat
-
+
-
+
-
+
Ouvrir le menu
-
+
Aide
-
+
Quitter
-
+
-
+
-
+
-
+
Effacer l'expression
-
+
Supprimer
-
+
Retour arrière
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Défaire
-
+
Refaire
-
+
Calculer l'expression
-
+
-
+
-
+
-
+
-
+
-
+
Défaut
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -9084,9 +9084,9 @@ Vous pouvez télécharger la version %3 de %2.
-
-
-
+
+
+
Menu
@@ -9157,9 +9157,9 @@ Vous pouvez télécharger la version %3 de %2.
-
-
-
+
+
+
Fonctions
@@ -9171,17 +9171,17 @@ Vous pouvez télécharger la version %3 de %2.
-
-
-
+
+
+
Unités
-
-
-
+
+
+
Fonctions/Données du Graph
@@ -9217,7 +9217,7 @@ Vous pouvez télécharger la version %3 de %2.
-
+
Raccourcis clavier
@@ -9244,7 +9244,7 @@ Vous pouvez télécharger la version %3 de %2.
-
+
À propos de %1
@@ -9256,9 +9256,9 @@ Vous pouvez télécharger la version %3 de %2.
-
-
-
+
+
+
Mode
@@ -9449,7 +9449,7 @@ Vous pouvez télécharger la version %3 de %2.
-
+
Autre
@@ -9534,9 +9534,9 @@ Vous pouvez télécharger la version %3 de %2.
-
-
-
+
+
+
Convertir
@@ -9546,9 +9546,9 @@ Vous pouvez télécharger la version %3 de %2.
-
-
-
+
+
+
Enregistrer
@@ -9563,7 +9563,7 @@ Vous pouvez télécharger la version %3 de %2.
-
+
Clavier
@@ -9573,7 +9573,7 @@ Vous pouvez télécharger la version %3 de %2.
-
+
Bases numériques
@@ -9610,27 +9610,27 @@ Vous pouvez télécharger la version %3 de %2.
Bases numériques (%1)
-
+
Binaire :
-
+
Octal :
-
+
Décimal :
-
+
Hexadécimal :
-
+
Pile NPI
@@ -9643,253 +9643,253 @@ Vous pouvez télécharger la version %3 de %2.
Vider la pile NPI (%1)
-
+
Nouvelle fonction…
-
-
-
+
+
+
Favoris
-
-
-
+
+
+
Récentes
-
+
Fonctions utilisateur
-
+
Ouvrir la boîte de dialogue
-
+
Afficher toutes les fonctions
-
+
Unités utilisateur
-
+
plus
-
+
Préfixes
-
+
Afficher toutes les unités
-
+
Variables utilisateur
-
+
Afficher toutes les variables
-
+
Une calculatrice puissante et facile d'utilisation
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
Erreur
-
-
+
+
Ne peut pas écrire de définitions
-
-
+
+
hexadécimal
-
-
+
+
octal
-
-
+
+
décimal
-
-
+
+
duodécimal
-
-
+
+
binaire
-
-
+
+
romain
-
-
+
+
bijectif
-
-
-
-
-
-
+
+
+
+
+
+
sexagésimal
-
-
-
-
+
+
+
+
latitude
-
-
-
-
+
+
+
+
longitude
-
-
+
+
temps
-
-
+
+
L'analyse du fuseau horaire a échoué.
-
-
+
+
bases
-
-
+
+
calendriers
-
-
+
+
algébrique
-
-
+
+
cartésien
-
-
+
+
exponentielle
-
-
+
+
polaire
-
-
+
+
phaseur
-
-
+
+
angle
-
-
+
+
optimal
-
-
-
-
+
+
+
+
base
-
-
+
+
mixte
-
-
+
+
fraction
-
-
+
+
facteurs
@@ -9899,228 +9899,239 @@ Vous pouvez télécharger la version %3 de %2.
-
+
+
+
+
+
+
+
+
+
+
+
+
Copier
-
-
+
+
préfixe
-
-
+
+
fraction partielle
-
-
+
+
-
-
+
+
factoriser
-
-
+
+
développer
-
-
-
-
+
+
+
+
Calcul en cours…
-
-
-
+
+
+
Fermer
-
-
+
+
Opération NPI
-
+
Factorisation en cours…
-
+
Développement des fractions partielles…
-
+
Développement en cours…
-
+
Conversion en cours…
-
+
Registre NPI déplacé
-
-
-
+
+
+
Traitement en cours…
-
-
+
+
Matrice
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Mode d'analyse
-
+
-
+
-
+
Conventionnelle
-
+
Adaptif
-
+
-
+
-
+
-
+
-
-
+
+
Ajouter action (%1)
-
+
-
+
Nouveau raccourci clavier
@@ -10129,136 +10140,136 @@ Please select interpretation of expressions with implicit multiplication
Action :
-
+
Valeur :
-
+
Définir la combinaison de touches
-
+
Appuyer sur la combinaison de touches que vous souhaitez utiliser pour l'action.
-
+
-
+
La combinaison de touches est déjà utilisée.
Souhaitez-vous remplacer l'action en cours (%1)?
-
+
Question
-
+
Ajouter…
-
+
Éditer…
-
+
Supprimer
-
+
Impossible de trouver Gnuplot
-
+
%1 (%2) a besoin d'être installé séparement, et indiquer son chemin d'installation dans la recherche de chemin de l'exécutable, pour faire fonctionner les graphs.
-
+
Example of function usage
Exemple :
-
+
RPN Enter
Entrer
-
+
Calculer
-
+
Appliquer à la pile
-
+
Insérer
-
+
-
-
-
+
+
+
-
+
-
+
-
+
Ne plus demander
-
+
Garder ouvert
-
+
Valeur
-
+
Argument
-
-
-
-
+
+
+
+
%1 :
@@ -10269,186 +10280,181 @@ Souhaitez-vous remplacer l'action en cours (%1)?
-
+
Général
-
+
Programmation
-
+
Algèbre
-
+
Personnalisé
-
-
+
+
Aucune
-
-
-
-
-
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
<i>Clic droit/pression longue</i> : %1
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
Ouvrir le menu
-
-
-
+
+
+
Bases numériques
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
Supprimer la valeur supérieure ou sélectionnée
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
Vider la pile NPI
-
-
+
+
Action
-
+
Combinaison de touches
-
+
Vrai
-
+
Faux
-
+
Info
-
-
+
+
optional argument
optionnel
-
+
Impossible d'ouvrir %1.
diff --git a/translations/qalculate-qt_nl.ts b/translations/qalculate-qt_nl.ts
index 9fd8dbb..428f112 100644
--- a/translations/qalculate-qt_nl.ts
+++ b/translations/qalculate-qt_nl.ts
@@ -4691,740 +4691,740 @@ Wilt u die overschrijven?
ExpressionEdit
-
+
matrix
-
+
vector
-
+
positief
-
+
niet-positief
-
+
negatief
-
+
niet-negatief
-
+
ongelijk nul
-
+
booleaans
-
+
geheel
-
+
rationaal
-
+
reëel
-
+
complex
-
+
getal
-
+
(geen matrix)
-
+
onbekend
-
+
standaard aannames
-
+
voorvoegsel:
-
+
Complexe hoeknotatie
-
+
Basiseenheden
-
+
Grondtal talstelsel
-
+
BCD-code
-
+
-
+
Binair getal
-
+
Kalendars
-
+
Complexe cis-vorm
-
+
Decimaal getal
-
+
Duodecimaal getal
-
+
Complexe exponentiële vorm
-
+
Factoren
-
+
-
+
-
+
-
+
-
+
-
-
+
+
Breuk
-
+
Decimale vorm
-
+
Hexadecimaal getal
-
+
Breedtegraad
-
+
Lengtegraad
-
+
Gemengde eenheden
-
+
Octaal getal
-
+
Meest geschikte eenheid
-
+
Meest geschikte voorvoegsel
-
+
Partiële breuken
-
+
Complexe polaire vorm
-
+
Complexe rechthoekige vorm
-
+
Romeinse cijfers
-
+
Sexagesimaal getal
-
+
Tijdnotatie
-
-
+
+
Unicode
-
+
UTC-tijdzone
-
+
Ongedaan maken
-
+
Opnieuw doen
-
+
Knippen
-
+
Kopiëren
-
+
Plakken
-
+
Wissen
-
+
Datum invoegen…
-
+
Matrix invoegen…
-
+
Alles selecteren
-
+
Leegmaken
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Expressiestatus
-
+
Uit
-
+
-
+
-
+
Met vertraging
-
+
Zonder vertraging
-
+
Invoermethode gebruiken
-
+
Matrix
-
+
Te veel argumenten voor %1().
-
+
argument
-
+
%1:
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
hexadecimaal
-
-
+
+
hexadecimaal getal
-
+
octaal
-
+
octaal getal
-
+
decimaal
-
+
decimaal getal
-
+
duodecimaal
-
-
+
+
dodecimaal getal
-
+
binair
-
-
+
+
binair getal
-
+
romeins
-
+
romeinse cijfers
-
+
-
+
-
+
BCD-code
-
+
sexagesimaal
-
+
sexagesimaal getal
-
-
+
+
breedtegraad
-
-
+
+
langtegraad
-
+
-
+
-
+
-
+
-
+
-
+
tijd
-
+
tijdnotatie
-
+
grondtallen
-
+
grondtallen
-
-
+
+
kalenders
-
+
optimale
-
+
meest geschikte eenheid
-
+
voorvoegsel
-
+
-
-
+
+
basis
-
+
basiseenheden
-
+
gemengde
-
+
gemengde eenheden
-
+
-
+
-
-
-
+
+
+
breuk
-
-
+
+
factoren
-
+
partiële breuken
-
+
splitsen in partiële breuken
-
+
rechthoekig
-
+
cartesisch
-
+
complexe rechthoekige vorm
-
+
exponentiële
-
+
complexe exponentiële vorm
-
+
polair
-
+
complexe polaire vorm
-
+
complexe cis-vorm
-
+
hoek
-
+
complexe hoeknotatie
-
+
-
+
complexe hoeknotatie
-
+
UTC-tijdzone
-
+
grondtal %1
-
+
Gegevensobject
@@ -5827,18 +5827,18 @@ Wilt u die overschrijven?
HistoryView
-
+
-
+
-
-
+
+
Kopiëren
@@ -5847,12 +5847,12 @@ Wilt u die overschrijven?
Opgemaakte tekst kopiëren
-
+
Niet-opgemaakte ASCII kopiëren
-
+
Alles selecteren
@@ -5867,7 +5867,7 @@ Wilt u die overschrijven?
-
+
@@ -5875,7 +5875,7 @@ Wilt u die overschrijven?
-
+
@@ -5883,33 +5883,33 @@ Wilt u die overschrijven?
-
+
-
+
-
+
Wissen
-
+
Leegmaken
-
+
Tekst:
-
-
+
+
@@ -5917,29 +5917,29 @@ Wilt u die overschrijven?
KeypadButton
-
-
+
+
-
-
+
+
-
+
-
+
Menu openen
-
+
@@ -6024,7 +6024,7 @@ Wilt u die overschrijven?
-
+
@@ -6095,191 +6095,191 @@ Wilt u die overschrijven?
-
+
-
+
Eenheden in natuurkundige constanten
-
+
Alle constanten
-
+
Percentage berekenen
-
-
+
+
-
+
Alle eenheden
-
+
Alle variabelen
-
+
Actie
-
+
Tonen interval
-
+
-
+
-
+
-
+
-
+
-
+
Interval berekening
-
+
-
+
-
+
-
+
Complexe form
-
+
-
+
-
+
-
+
-
+
Assumptions type
Type
-
+
Assumptions sign
Teken
-
+
Standaard aannames
-
+
Getal
-
+
Reëel
-
+
Rationaal
-
+
Geheel
-
+
Booleaans
-
+
Unknown assumptions sign
Onbekende
-
+
Ongelijk aan nul
-
+
Positief
-
+
Niet-negatief
-
+
Negatief
-
+
Niet-positief
@@ -6292,7 +6292,7 @@ Wilt u die overschrijven?
-
+
Uitwerken
@@ -6317,74 +6317,74 @@ Wilt u die overschrijven?
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
+
Decimale komma
-
+
-
+
-
+
-
+
@@ -6393,82 +6393,82 @@ Wilt u die overschrijven?
Actie:
-
+
Geen
-
+
-
+
-
+
-
+
Wissen
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
Expressie berekenen
@@ -6996,89 +6996,89 @@ Wilt u die overschrijven?
PreferencesDialog
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Antwoord
-
+
-
+
Stijl:
-
+
Default style
-
-
+
+
-
+
@@ -7091,37 +7091,37 @@ Wilt u die overschrijven?
Aangepast lettertype voor expressie
-
+
Voorkeuren
-
+
-
+
-
+
-
+
-
+
-
+
@@ -7130,215 +7130,215 @@ Wilt u die overschrijven?
Expressiestatus tonen
-
-
+
+
milliseconds
ms
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Taal:
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Expressiestatus:
-
+
Uit
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
RPN
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -7355,322 +7355,322 @@ Wilt u die overschrijven?
Punten in getallen negeren
-
+
-
+
Geen
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Basiseenheden
-
+
Meest geschikte eenheden
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
Standaard
-
+
-
+
-
+
-
-
+
+
Binair
-
-
+
+
Hexadecimaal
-
+
-
+
Automatisch
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Eenheden in natuurkundige constanten
-
+
-
+
-
-
+
+
-
+
-
+
-
-
+
+
%n dag
@@ -7755,97 +7755,97 @@ Do you, despite this, want to change the default behavior and allow multiple sim
-
-
+
+
antwoord
-
+
-
+
-
+
-
+
Laatste antwoord
-
+
Antwoord 2
-
+
Antwoord 3
-
+
Antwoord 4
-
+
Antwoord 5
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
Fout
-
+
Kon de voorkeurinstellingen niet schrijven naar
%1
-
+
-
+
-
+
-
+
-
-
+
+
@@ -7853,12 +7853,12 @@ Do you, despite this, want to change the default behavior and allow multiple sim
QalculateQtSettings
-
+
Wisselkoersen bijwerken?
-
+
@@ -7872,592 +7872,592 @@ Do you wish to update the exchange rates now?
Wisselkoersen worden opgehaald.
-
-
+
+
-
-
-
-
-
+
+
+
+
+
Fout
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Converteren naar eenheid
-
+
Converteren
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Antwoord opslaan
-
+
-
+
-
+
-
+
-
+
-
+
Nieuwe variabele
-
+
Nieuwe functie
-
+
Functies/gegevens plotten
-
+
Getallen converteren naar ander grondtal
-
+
-
+
Kalenderconversie
-
+
Percentage berekenen
-
+
Periodiek systeem
-
+
Wisselkoersen bijwerken
-
+
Antwoord kopiëren
-
+
-
+
-
+
Menu openen
-
+
Help
-
+
Afsluiten
-
+
-
+
-
+
-
+
-
+
Wissen
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Ongedaan maken
-
+
Opnieuw doen
-
+
Expressie berekenen
-
+
-
+
-
+
-
+
-
+
-
+
Standaard
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -8536,9 +8536,9 @@ You can get version %3 at %2.
-
-
-
+
+
+
Menu
@@ -8609,9 +8609,9 @@ You can get version %3 at %2.
-
-
-
+
+
+
Functies
@@ -8623,17 +8623,17 @@ You can get version %3 at %2.
-
-
-
+
+
+
Eenheden
-
-
-
+
+
+
Functies/gegevens plotten
@@ -8669,7 +8669,7 @@ You can get version %3 at %2.
-
+
@@ -8696,7 +8696,7 @@ You can get version %3 at %2.
-
+
Over %1
@@ -8708,9 +8708,9 @@ You can get version %3 at %2.
-
-
-
+
+
+
Modus
@@ -8901,7 +8901,7 @@ You can get version %3 at %2.
-
+
Overig
@@ -8986,9 +8986,9 @@ You can get version %3 at %2.
-
-
-
+
+
+
Converteren
@@ -8998,9 +8998,9 @@ You can get version %3 at %2.
-
-
-
+
+
+
Opslaan
@@ -9015,7 +9015,7 @@ You can get version %3 at %2.
-
+
Numerieke toetse
@@ -9025,7 +9025,7 @@ You can get version %3 at %2.
-
+
Grondtallen
@@ -9062,324 +9062,324 @@ You can get version %3 at %2.
Grondtallen (%1)
-
+
Binair:
-
+
Octaal:
-
+
Decimaal:
-
+
Hexadecimaal:
-
+
RPN-stapelgeheugen
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
Menu openen
-
+
Nieuwe functie…
-
-
-
+
+
+
Favorieten
-
-
-
+
+
+
-
+
Gebruikersfuncties
-
+
-
+
-
+
Gebruikerseenheden
-
+
-
+
Voorvoegsels
-
+
-
+
Gebruikersvariabelen
-
+
-
+
Gemakkelijk te gebruiken rekenmachine met veel mogelijkheden
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
Fout
-
-
+
+
Kon definities niet schrijven
-
-
+
+
hexadecimaal
-
-
+
+
octaal
-
-
+
+
decimaal
-
-
+
+
duodecimaal
-
-
+
+
binair
-
-
+
+
romeins
-
-
+
+
-
-
-
-
-
-
+
+
+
+
+
+
sexagesimaal
-
-
-
-
+
+
+
+
breedtegraad
-
-
-
-
+
+
+
+
lengtegraad
-
-
+
+
tijd
-
-
+
+
-
-
+
+
grondtallen
-
-
+
+
kalenders
-
-
+
+
rechthoekig
-
-
+
+
cartesisch
-
-
+
+
exponentiële
-
-
+
+
polair
-
-
+
+
-
-
+
+
hoek
-
-
+
+
optimale
-
-
-
-
+
+
+
+
basis
-
-
+
+
gemengde
-
-
+
+
breuk
-
-
+
+
factoren
@@ -9389,228 +9389,239 @@ You can get version %3 at %2.
-
+
+
+
+
+
+
+
+
+
+
+
+
Kopiëren
-
-
+
+
voorvoegsel
-
-
+
+
partiële breuken
-
-
+
+
-
-
+
+
-
-
+
+
-
-
-
-
+
+
+
+
Berekenen…
-
-
-
+
+
+
Annuleren
-
-
+
+
RPN-bewerking
-
+
Ontbinden in factoren…
-
+
Splitsen in partiële breuken…
-
+
Uitwerken…
-
+
Converteert…
-
+
RPN-register is verplaatst
-
-
-
+
+
+
Verwerken…
-
-
+
+
Matrix
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Interpretatie modus
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
Actie toevoegen (%1)
-
+
-
+
@@ -9619,135 +9630,135 @@ Please select interpretation of expressions with implicit multiplication
Actie:
-
+
-
+
-
+
-
+
-
+
-
+
Vraag
-
+
Toevoegen…
-
+
Bewerken…
-
+
Wissen
-
+
-
+
-
+
Example of function usage
Voorbeeld:
-
+
RPN Enter
-
+
Berekenen
-
+
-
+
Invoegen
-
+
-
-
-
+
+
+
-
+
-
+
-
+
-
+
-
+
Waarde
-
+
Argument
-
-
-
-
+
+
+
+
%1:
@@ -9758,140 +9769,135 @@ Do you wish to replace the current action (%1)?
-
+
Algemeen
-
+
-
+
-
+
-
-
+
+
Geen
-
-
-
-
-
-
+
-
+
-
-
-
+
+
+
Grondtallen voor talstelsels
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
+
+
Actie
-
+
-
+
Waar
-
+
Onwaar
-
+
Info
-
-
+
+
optional argument
optioneel
-
+
diff --git a/translations/qalculate-qt_pt_BR.ts b/translations/qalculate-qt_pt_BR.ts
index bb5b0d1..b214a8a 100644
--- a/translations/qalculate-qt_pt_BR.ts
+++ b/translations/qalculate-qt_pt_BR.ts
@@ -5696,740 +5696,740 @@ Deseja sobrescrever a função?
ExpressionEdit
-
+
matriz
-
+
vetor
-
+
positivo
-
+
não-positivo
-
+
negativo
-
+
não-negativo
-
+
diferente de zero
-
+
boleano
-
+
inteiro
-
+
racional
-
+
real
-
+
complexo
-
+
número
-
+
(não matriz)
-
+
desconhecido
-
+
suposições padrão
-
+
Prefixo:
-
+
Notação complexa de ângulo/fasor
-
+
Unidades base
-
+
Base numérica
-
+
Codificação binária decimal
-
+
Base bijetiva-26
-
+
Número binário
-
+
Calendários
-
+
Forma cis complexa
-
+
Número decimal
-
+
Número duodecimal
-
+
Forma exponencial complexa
-
+
Fatores
-
+
Formato binário de ponto flutuante de 16-bit
-
+
Formato binário de ponto flutuante de 32-bit
-
+
Formato binário de ponto flutuante de 64-bit
-
+
Formato binário de ponto flutuante de 80-bit (x86)
-
+
Formato binário de ponto flutuante de 128-bit
-
-
+
+
Fração
-
+
Fração decimal
-
+
Número hexadecimal
-
+
-
+
-
+
Unidades mistas
-
+
Número octal
-
+
Unidade ideal
-
+
Prefixo ideal
-
+
Frações parciais expandidas
-
+
Forma polar complexa
-
+
Forma retangular complexa
-
+
Números romanos
-
+
Número sexagesimal
-
+
Formato da hora
-
-
+
+
Unicode
-
+
Fuso horário UTC
-
+
Desfazer
-
+
Refazer
-
+
Cortar
-
+
Copiar
-
+
Colar
-
+
Excluir
-
+
Inserir Data…
-
+
Inserir Matriz…
-
+
Selecionar tudo
-
+
Limpar
-
+
Limpar histórico
-
+
Conclusão
-
+
Sem conclusão
-
+
Conclusão estrita limitada
-
+
Conclusão estrita
-
+
Conclusão completa limitada
-
+
Conclusão completa
-
+
-
+
Status da expressão
-
+
Desligado
-
+
-
+
-
+
Com atraso
-
+
Sem atraso
-
+
Use o método de entrada
-
+
Matriz
-
+
Argumentos em excesso para %1().
-
+
argumento
-
+
%1:
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
fatorar
-
-
+
+
expandir
-
+
hexadecimal
-
-
+
+
número hexadecimal
-
+
octal
-
+
número octal
-
+
decimal
-
+
número decimal
-
+
duodecimal
-
-
+
+
número duodecimal
-
+
binário
-
-
+
+
número binário
-
+
romanos
-
+
numerais romanos
-
+
bijetivo
-
+
base bijetiva-26
-
+
codificação binária decimal
-
+
sexagesimal
-
+
número sexagesimal
-
-
+
+
-
-
+
+
-
+
ponto flutuante de 32-bit
-
+
ponto flutuante de 64-bit
-
+
ponto flutuante de 16-bit
-
+
ponto flutuante de 80-bit (x86)
-
+
ponto flutuante de 128-bit
-
+
hora
-
+
formato de hora
-
+
bases
-
+
bases numéricas
-
-
+
+
calendários
-
+
ideal
-
+
unidade ideal
-
+
prefixo
-
+
-
-
+
+
base
-
+
unidades de base
-
+
mesclado
-
+
unidades mescladas
-
+
-
+
-
-
-
+
+
+
fração
-
-
+
+
fatores
-
+
fração parcial
-
+
frações parciais expandidas
-
+
retangular
-
+
cartesiano
-
+
forma retangular complexa
-
+
exponencial
-
+
forma exponencial complexa
-
+
polar
-
+
forma polar complexa
-
+
forma cis complexa
-
+
ângulo
-
+
notação complexa de ângulo
-
+
fasor
-
+
notação complexa de fasor
-
+
fuso horário UTC
-
+
número base %1
-
+
Onjeto de dados
@@ -6832,18 +6832,18 @@ Deseja sobrescrever a função?
HistoryView
-
+
Inserir valor
-
+
Inserir texto
-
-
+
+
Copiar
@@ -6852,12 +6852,12 @@ Deseja sobrescrever a função?
Copiar texto formatado
-
+
Copiar ASCII não formatado
-
+
Selecionar tudo
@@ -6878,7 +6878,7 @@ e pressione a tecla Enter.
Digite a expressão matemática acima, ex. "5 + 2 / 3" e pressione a tecla Enter.
-
+
@@ -6886,7 +6886,7 @@ e pressione a tecla Enter.
-
+
@@ -6894,33 +6894,33 @@ e pressione a tecla Enter.
-
+
Proteger
-
+
Mover para o topo
-
+
Remover
-
+
Limpar
-
+
Texto:
-
-
+
+
Pesquisar
@@ -6928,29 +6928,29 @@ e pressione a tecla Enter.
KeypadButton
-
-
+
+
<i>Botão direito/pressionar e segurar</i>: %1
-
-
+
+
<i>Botão direito</i>: %1
-
+
<i>Pressionar e segurar</i>: %1
-
+
-
+
<i>Botão do meio</i>: %1
@@ -7035,7 +7035,7 @@ e pressione a tecla Enter.
-
+
Intervalo
@@ -7106,191 +7106,191 @@ e pressione a tecla Enter.
-
+
Expandir frações parciais
-
+
Activar unidades em constantes físicas
-
+
Todas as constantes
-
+
Ferramenta de Cálculo de Porcentagem
-
-
+
+
mais
-
+
Todas as unidades
-
+
Todas as variáveis
-
+
Ação
-
+
Exibição de intervalo
-
+
Adaptativa
-
+
Dígitos Significativos
-
+
Mais/menos
-
+
-
+
-
+
Cálculo de intervalo
-
+
-
+
-
+
-
+
-
+
Retangular
-
+
Exponencial
-
+
Polar
-
+
Ângulo/fasor
-
+
Assumptions type
Tipo
-
+
Assumptions sign
Sinal
-
+
Suposições padrão
-
+
Número
-
+
Real
-
+
Racional
-
+
Inteiro
-
+
Boleano
-
+
Unknown assumptions sign
Desconhecido
-
+
Diferente de zero
-
+
Positivo
-
+
Não-negativo
-
+
Negativo
-
+
Não-positivo
@@ -7303,7 +7303,7 @@ e pressione a tecla Enter.
-
+
Expandir
@@ -7328,74 +7328,74 @@ e pressione a tecla Enter.
-
+
Parêntese esquerdo
-
+
Parêntese esquerdo do vetor
-
+
Parêntese direito
-
+
Parêntese direito do vetor
-
+
Parênteses inteligentes
-
+
Colchetes para vetores
-
+
Separador de argumentos
-
-
+
+
Espaço em branco
-
-
+
+
Nova linha
-
+
Ponto decimal
-
+
Resultado anterior (estático)
-
+
Multiplicação
-
+
-
+
Etiqueta:
@@ -7404,82 +7404,82 @@ e pressione a tecla Enter.
Ação:
-
+
Nenhum
-
+
Valor:
-
+
Bit-a-bit AND
-
+
Deslocamento bit-a-bit
-
+
Excluir
-
+
Backspace
-
+
Adição
-
+
Mais
-
-
+
+
Subtração
-
-
+
+
Menos
-
+
Divisão
-
+
Bit-a-bit OR
-
+
Bit-a-bit NOT
-
+
Limpar expressão
-
+
Calcular expressão
@@ -8007,99 +8007,99 @@ e pressione a tecla Enter.
PreferencesDialog
-
+
Aparência
-
+
Números e operadores
-
+
Unidades e moedas
-
+
Análise e cálculo
-
+
Ignorar o idioma do sistema (requer reinício)
-
+
Permitir várias instâncias
-
+
Limpar histórico ao sair
-
+
-
+
-
+
Título da janela:
-
+
Nome do programa
-
+
Resultado
-
+
Nome do programa + resultado
-
+
Espaço de trabalho
-
+
Nome do programa + espaço de trabalho
-
+
Estilo:
-
+
Default style
-
-
+
+
Tema escuro
-
+
@@ -8120,22 +8120,22 @@ e pressione a tecla Enter.
Fonte do programa personalizada
-
+
Fonte do resultado personalizada:
-
+
Fonte da expressão personalizada:
-
+
Fonte do teclado personalizada:
-
+
Fonte do programa personalizada:
@@ -8144,93 +8144,93 @@ e pressione a tecla Enter.
Exibir status da expressão
-
+
-
+
-
+
Limpar expressão
-
+
-
+
-
+
Usar teclado para RPN
-
+
Modo de análise:
-
-
+
+
Adaptativa
-
+
Convencional
-
+
Primeiro multiplicação implícita
-
+
-
+
RPN
-
+
Ler precisão
-
+
Limitar multiplicação implícita
-
+
Cálculo de intervalo:
-
+
-
+
-
+
Fatorar resultado
@@ -8255,13 +8255,13 @@ e pressione a tecla Enter.
Usar notação E em vez de 10^x
-
+
Preferências
-
-
+
+
milliseconds
ms
@@ -8287,12 +8287,12 @@ e pressione a tecla Enter.
Ignorar pontos em números
-
+
-
+
Arredondar números até a metade
@@ -8301,427 +8301,427 @@ e pressione a tecla Enter.
Indicar decimais repetidos
-
+
Idioma:
-
+
-
+
Usar acento circunflexo para XOR bit-a-bit
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Status da expressão:
-
+
Desligado
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
Binário
-
-
+
+
Hexadecimal
-
+
-
+
Automática
-
+
Agrupamento de dígitos:
-
+
Nenhum
-
+
Padrão
-
+
Local
-
+
Exibição de intervalo:
-
+
Dígitos Significativos
-
+
Intervalo
-
+
Mais/menos
-
+
-
+
Ponto médio
-
+
-
+
-
+
-
+
Forma de nùmero complexo:
-
+
Retangular
-
+
Exponencial
-
+
Polar
-
+
Ângulo/fasor
-
+
-
+
Abreviar nomes
-
+
Usar prefixos binários para unidades de informações
-
+
-
+
-
+
Unidades base
-
+
Unidades ideais
-
+
-
+
-
+
-
+
-
+
Reinício necessário
-
+
Por favor, reinicie a aplicação para que a alteração de idioma tenha efeito.
-
-
+
+
Padrão
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Ativar prefixos de denominador
-
+
Activar unidades em constantes físicas
-
+
-
+
-
-
+
+
-
+
-
+
Atualizações das taxas de câmbio:
-
-
+
+
%n dia
@@ -8810,97 +8810,97 @@ Mesmo assim, você deseja alterar o comportamento padrão e permitir várias ins
-
-
+
+
resposta
-
+
Valor da resposta do histórico
-
+
Índice(s) do histórico
-
+
O índice do histórico %s não existe.
-
+
Última resposta
-
+
Resposta 2
-
+
Resposta 3
-
+
Resposta 4
-
+
Resposta 5
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
Não foi possível gravar preferências em
%1
-
+
Função não encontrada.
-
+
Variável não encontrada.
-
+
Unidade não encontrada.
-
+
Base não suportada.
-
-
+
+
@@ -8908,12 +8908,12 @@ Mesmo assim, você deseja alterar o comportamento padrão e permitir várias ins
QalculateQtSettings
-
+
Atualizações das taxas de câmbio?
-
+
@@ -8931,63 +8931,63 @@ Deseja atualizar as taxas de câmbio agora?
Buscando taxas de câmbio.
-
-
+
+
Buscando taxas de câmbio…
-
-
-
-
-
+
+
+
+
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
Caminho do executável não encontrado.
-
+
curl não encontrado.
-
+
Falha ao executar o script de atualização.
%1
-
+
Falha ao verificar por atualizações.
-
+
Nenhuma atualização encontrada.
-
+
@@ -8996,8 +8996,8 @@ Do you wish to update to version %3?
Deseja atualizar para a versão %3.
-
-
+
+
@@ -9006,522 +9006,522 @@ You can get version %3 at %2.
Você pode obter a versão %3 em %2.
-
+
-
+
-
+
Inserir função
-
+
Inserir função (diálogo)
-
+
Inserir variável
-
+
-
+
Negar
-
+
Inverter
-
+
Inserir unidade
-
+
Inserir texto
-
+
-
+
Inserir data
-
+
Inserir matriz
-
+
Inserir parênteses inteligentes
-
+
Converter em unidade
-
+
Converter
-
+
Converter em unidade ideal
-
+
Converter em unidades base
-
+
Converter em prefixo ideal
-
+
Converter em número base
-
+
Fatorar resultado
-
+
Expandir resultado
-
+
Expandir frações parciais
-
+
RPN: para baixo
-
+
RPN: para cima
-
+
RPN: trocar
-
+
RPN: copiar
-
+
RPN: lastx
-
+
RPN: excluir registro
-
+
RPN: limpar pilha
-
+
Definir base de expressão
-
+
Definir base de resultados
-
+
Definir unidade de ângulo em graus
-
+
Definir unidade de ângulo em radianos
-
+
Definir unidade de ângulo em gradianos
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Alternar modo RPN
-
+
-
+
Alternar teclado de programação
-
+
-
+
-
+
-
+
Pesquisar no histórico
-
+
Limpar histórico
-
+
-
+
-
+
-
+
-
+
Guardar resultado
-
+
-
+
-
+
-
+
-
+
-
+
Nova variável
-
+
Nova função
-
+
Abrir funções/dados de plotagem
-
+
Abrir números base convertidos
-
+
Abrir conversão de ponto flutuante
-
+
Abrir conversão de calendário
-
+
Abrir ferramenta de cálculo de porcentagem
-
+
Abrir tabela periódica
-
+
Atualizar taxas de câmbio
-
+
Copiar resultado
-
+
-
+
-
+
-
+
Ajuda
-
+
Sair
-
+
-
+
-
+
-
+
Limpar expressão
-
+
Excluir
-
+
Backspace
-
+
-
+
-
+
-
+
-
+
Acima
-
+
Abaixo
-
+
Desfazer
-
+
Refazer
-
+
Calcular expressão
-
+
-
+
-
+
-
+
-
+
-
+
Padrão
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -9600,9 +9600,9 @@ Você pode obter a versão %3 em %2.
-
-
-
+
+
+
@@ -9669,9 +9669,9 @@ Você pode obter a versão %3 em %2.
-
-
-
+
+
+
Funções
@@ -9683,17 +9683,17 @@ Você pode obter a versão %3 em %2.
-
-
-
+
+
+
Unidades
-
-
-
+
+
+
Funções/dados de plotagem
@@ -9729,7 +9729,7 @@ Você pode obter a versão %3 em %2.
-
+
Atalhos do teclado
@@ -9756,7 +9756,7 @@ Você pode obter a versão %3 em %2.
-
+
Sobre o %1
@@ -9768,9 +9768,9 @@ Você pode obter a versão %3 em %2.
-
-
-
+
+
+
Modo
@@ -9961,7 +9961,7 @@ Você pode obter a versão %3 em %2.
-
+
Outro
@@ -10046,9 +10046,9 @@ Você pode obter a versão %3 em %2.
-
-
-
+
+
+
Converter
@@ -10058,9 +10058,9 @@ Você pode obter a versão %3 em %2.
-
-
-
+
+
+
Armazenar
@@ -10075,7 +10075,7 @@ Você pode obter a versão %3 em %2.
-
+
Teclado
@@ -10085,7 +10085,7 @@ Você pode obter a versão %3 em %2.
-
+
Bases numéricas
@@ -10122,27 +10122,27 @@ Você pode obter a versão %3 em %2.
Bases numéricas (%1)
-
+
Binário:
-
+
Octal:
-
+
Decimal:
-
+
Hexadecimal:
-
+
Pilha RPN
@@ -10175,253 +10175,253 @@ Você pode obter a versão %3 em %2.
Limpar a pilha RPN (%1)
-
+
Nova função…
-
-
-
+
+
+
Favoritos
-
-
-
+
+
+
Recentes
-
+
Funções de usuário
-
+
-
+
-
+
Unidades de usuário
-
+
mais
-
+
Prefixos
-
+
-
+
Variáveis de usuário
-
+
-
+
Calculadora potente e fácil de usar
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
Não foi possível gravar definições
-
-
+
+
hexadecimal
-
-
+
+
octal
-
-
+
+
decimal
-
-
+
+
duodecimal
-
-
+
+
binário
-
-
+
+
romanos
-
-
+
+
bijetivo
-
-
-
-
-
-
+
+
+
+
+
+
sexagesimal
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
+
+
hora
-
-
+
+
Falha na análise do fuso horário.
-
-
+
+
bases
-
-
+
+
calendários
-
-
+
+
retangular
-
-
+
+
cartesiano
-
-
+
+
exponencial
-
-
+
+
polar
-
-
+
+
fasor
-
-
+
+
ângulo
-
-
+
+
ideal
-
-
-
-
+
+
+
+
base
-
-
+
+
mesclado
-
-
+
+
fração
-
-
+
+
fatores
@@ -10431,228 +10431,239 @@ Você pode obter a versão %3 em %2.
-
+
+
+
+
+
+
+
+
+
+
+
+
Copiar
-
-
+
+
prefixo
-
-
+
+
fração parcial
-
-
+
+
-
-
+
+
fatorar
-
-
+
+
expandir
-
-
-
-
+
+
+
+
Calculando…
-
-
-
+
+
+
Cancelar
-
-
+
+
Operação RPN
-
+
Fatorando…
-
+
Expandindo frações parciais…
-
+
Expandindo…
-
+
Convertendo…
-
+
Registro RPN Movido
-
-
-
+
+
+
Processando…
-
-
+
+
Matriz
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Modo de análise
-
+
-
+
Primeiro multiplicação implícita
-
+
Convencional
-
+
Adaptativa
-
+
-
+
-
+
-
+
-
-
+
+
Adicionar ação (%1)
-
+
-
+
Novo atalho de teclado
@@ -10661,136 +10672,136 @@ Please select interpretation of expressions with implicit multiplication
Ação:
-
+
Valor:
-
+
Definir combinação de teclas
-
+
Pressione a combinação de teclas que deseja usar para a ação.
-
+
-
+
A combinação de teclas já está em uso.
Deseja substituir a ação atual (%1)?
-
+
-
+
Adicionar…
-
+
Editar…
-
+
Remover
-
+
-
+
%1 (%2) precisa ser instalado separadamente e localizado no caminho de pesquisa do executável para que a plotagem funcione.
-
+
Example of function usage
Exemplo:
-
+
RPN Enter
Enter
-
+
Calcular
-
+
Aplicar à pilha
-
+
Inserir
-
+
-
-
-
+
+
+
-
+
-
+
-
+
Não perguntar novamente
-
+
Manter aberto
-
+
Valor
-
+
Argumento
-
-
-
-
+
+
+
+
%1:
@@ -10801,186 +10812,181 @@ Deseja substituir a ação atual (%1)?
-
+
Geral
-
+
Programação
-
+
Álgebra
-
+
-
-
+
+
Nenhum
-
-
-
-
-
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
<i>Botão direito/pressionar e segurar</i>: %1
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
Bases Numéricas
-
-
-
+
+
+
Gire a pilha ou mova o registro selecionado para cima
-
-
-
+
+
+
Gire a pilha ou mova o registro selecionado para baixo
-
-
-
+
+
+
Troque os valores superiores ou mova o valor selecionado para o topo da pilha
-
-
-
+
+
+
Excluir o valor selecionado ou superior
-
-
-
+
+
+
Digite o valor superior antes da última operação numérica
-
-
-
+
+
+
Copie o valor selecionado ou superior para o topo da pilha
-
-
-
+
+
+
Limpar a pilha RPN
-
-
+
+
Ação
-
+
Combinação de teclas
-
+
Verdadeiro
-
+
Falso
-
+
Informação
-
-
+
+
optional argument
opcional
-
+
Falha ao abrir %1.
diff --git a/translations/qalculate-qt_pt_PT.ts b/translations/qalculate-qt_pt_PT.ts
index 74bbc0d..b5f73ff 100644
--- a/translations/qalculate-qt_pt_PT.ts
+++ b/translations/qalculate-qt_pt_PT.ts
@@ -5696,740 +5696,740 @@ Deseja substituir a função?
ExpressionEdit
-
+
matriz
-
+
vetor
-
+
positivo
-
+
não-positivo
-
+
negativo
-
+
não-negativo
-
+
diferente de zero
-
+
boleano
-
+
inteiro
-
+
racional
-
+
real
-
+
complexo
-
+
número
-
+
(não matriz)
-
+
desconhecido
-
+
suposições padrão
-
+
Prefixo:
-
+
Notação complexa de ângulo/fasor
-
+
Unidades base
-
+
Base numérica
-
+
Codificação binária decimal
-
+
Base bijetiva-26
-
+
Número binário
-
+
Calendários
-
+
Forma cis complexa
-
+
Número decimal
-
+
Número duodecimal
-
+
Forma exponencial complexa
-
+
Fatores
-
+
Formato binário de ponto flutuante de 16-bit
-
+
Formato binário de ponto flutuante de 32-bit
-
+
Formato binário de ponto flutuante de 64-bit
-
+
Formato binário de ponto flutuante de 80-bit (x86)
-
+
Formato binário de ponto flutuante de 128-bit
-
-
+
+
Fração
-
+
Fração decimal
-
+
Número hexadecimal
-
+
Latitude
-
+
Longitude
-
+
Unidades mistas
-
+
Número octal
-
+
Unidade ideal
-
+
Prefixo ideal
-
+
Frações parciais expandidas
-
+
Forma polar complexa
-
+
Forma retangular complexa
-
+
Números romanos
-
+
Número sexagesimal
-
+
Formato da hora
-
-
+
+
Unicode
-
+
Fuso horário UTC
-
+
Desfazer
-
+
Refazer
-
+
Cortar
-
+
Copiar
-
+
Colar
-
+
Eliminar
-
+
Inserir Data…
-
+
Inserir Matriz…
-
+
Selecionar tudo
-
+
Limpar
-
+
Limpar histórico
-
+
Preenchimento
-
+
Sem preenchimento
-
+
Preenchimento rigoroso limitado
-
+
Preenchimento estrita
-
+
Preenchimento total limitado
-
+
Preenchimento total
-
+
Preenchimento atrasado
-
+
Estado da expressão
-
+
Desligado
-
+
Na lista do histórico
-
+
No campo de expressão
-
+
Com atraso
-
+
Sem atraso
-
+
Use o método de entrada
-
+
Matriz
-
+
Argumentos em excesso para %1().
-
+
argumento
-
+
%1:
-
-
+
+
MC(limpar memória)
-
-
+
+
MS (armazenar memória)
-
-
+
+
M+ (mais memória)
-
-
+
+
M− (menos memória)
-
-
+
+
fatorar
-
-
+
+
expandir
-
+
hexadecimal
-
-
+
+
número hexadecimal
-
+
octal
-
+
número octal
-
+
decimal
-
+
número decimal
-
+
duodecimal
-
-
+
+
número duodecimal
-
+
binário
-
-
+
+
número binário
-
+
romanos
-
+
numerais romanos
-
+
bijetivo
-
+
base bijetiva-26
-
+
codificação binária decimal
-
+
sexagesimal
-
+
número sexagesimal
-
-
+
+
latitude
-
-
+
+
longitude
-
+
ponto flutuante de 32-bit
-
+
ponto flutuante de 64-bit
-
+
ponto flutuante de 16-bit
-
+
ponto flutuante de 80-bit (x86)
-
+
ponto flutuante de 128-bit
-
+
hora
-
+
formato de hora
-
+
bases
-
+
bases numéricas
-
-
+
+
calendários
-
+
ideal
-
+
unidade ideal
-
+
prefixo
-
+
prefixo ideal
-
-
+
+
base
-
+
unidades de base
-
+
mesclado
-
+
unidades mescladas
-
+
decimais
-
+
fração decimal
-
-
-
+
+
+
fração
-
-
+
+
fatores
-
+
fração parcial
-
+
frações parciais expandidas
-
+
retangular
-
+
cartesiano
-
+
forma retangular complexa
-
+
exponencial
-
+
forma exponencial complexa
-
+
polar
-
+
forma polar complexa
-
+
forma cis complexa
-
+
ângulo
-
+
notação complexa de ângulo
-
+
fasor
-
+
notação complexa de fasor
-
+
fuso horário UTC
-
+
número base %1
-
+
Onjeto de dados
@@ -6928,29 +6928,29 @@ e pressione a tecla Enter.
KeypadButton
-
-
+
+
<i>Botão direito/pressionar e segurar</i>: %1
-
-
+
+
<i>Botão direito</i>: %1
-
+
<i>Pressionar e segurar</i>: %1
-
+
Abrir menu
-
+
<i>Botão do meio</i>: %1
@@ -7035,7 +7035,7 @@ e pressione a tecla Enter.
-
+
Intervalo
@@ -7106,191 +7106,191 @@ e pressione a tecla Enter.
-
+
Expandir frações parciais
-
+
Ativar unidades em constantes físicas
-
+
Todas as constantes
-
+
Ferramenta de cálculo de percentagem
-
-
+
+
mais
-
+
Todas as unidades
-
+
Todas as variáveis
-
+
Ação
-
+
Exibição de intervalo
-
+
Adaptativa
-
+
Dígitos significativos
-
+
Mais/menos
-
+
Relativo
-
+
Conciso
-
+
Cálculo de intervalo
-
+
Fórmula de desvio
-
+
Aritmética de intervalos
-
+
Permitir a introdução concisa de incertezas
-
+
Forma de número complexo
-
+
Retangular
-
+
Exponencial
-
+
Polar
-
+
Ângulo/fasor
-
+
Assumptions type
Tipo
-
+
Assumptions sign
Sinal
-
+
Suposições padrão
-
+
Número
-
+
Real
-
+
Racional
-
+
Inteiro
-
+
Boleano
-
+
Unknown assumptions sign
Desconhecido
-
+
Diferente de zero
-
+
Positivo
-
+
Não-negativo
-
+
Negativo
-
+
Não-positivo
@@ -7303,7 +7303,7 @@ e pressione a tecla Enter.
-
+
Expandir
@@ -7328,74 +7328,74 @@ e pressione a tecla Enter.
Remover linha
-
+
Parêntese esquerdo
-
+
Parêntese esquerdo do vetor
-
+
Parêntese direito
-
+
Parêntese direito do vetor
-
+
Parênteses inteligentes
-
+
Colchetes para vetores
-
+
Separador de argumentos
-
-
+
+
Espaço em branco
-
-
+
+
Nova linha
-
+
Ponto decimal
-
+
Resultado anterior (estático)
-
+
Multiplicação
-
+
Ação do botão
-
+
Etiqueta:
@@ -7404,82 +7404,82 @@ e pressione a tecla Enter.
Ação:
-
+
Nenhum
-
+
Valor:
-
+
Bitwise AND
-
+
Bitwise Shift
-
+
Eliminar
-
+
Backspace
-
+
Adição
-
+
Mais
-
-
+
+
Subtração
-
-
+
+
Menos
-
+
Divisão
-
+
Bit-a-bit OR
-
+
Bit-a-bit NOT
-
+
Limpar expressão
-
+
Calcular expressão
@@ -8007,99 +8007,99 @@ e pressione a tecla Enter.
PreferencesDialog
-
+
Aparência
-
+
Números e operadores
-
+
Unidades e moedas
-
+
Análise e cálculo
-
+
Ignorar o idioma do sistema (requer reinício)
-
+
Permitir várias instâncias
-
+
Limpar histórico ao sair
-
+
Fechar a aplicação com a tecla Esc
-
+
Manter acima das outras janelas
-
+
Título da janela:
-
+
Nome do programa
-
+
Resultado
-
+
Nome do programa + resultado
-
+
Área de trabalho
-
+
Nome da aplicação + área de trabalho
-
+
Estilo:
-
+
Default style
Padrão (requer reinício)
-
-
+
+
Modo escuro
-
+
Colorir resultado
@@ -8120,22 +8120,22 @@ e pressione a tecla Enter.
Fonte do programa personalizada
-
+
Fonte do resultado personalizada:
-
+
Fonte da expressão personalizada:
-
+
Fonte do teclado personalizada:
-
+
Fonte do programa personalizada:
@@ -8148,93 +8148,93 @@ e pressione a tecla Enter.
Atraso:
-
+
Expressão após cálculo:
-
+
Manter expressão
-
+
Limpar expressão
-
+
Substituir pelo resultado
-
+
Substituir pelo resultado se for mais curto
-
+
Usar teclado para RPN
-
+
Modo de análise:
-
-
+
+
Adaptativa
-
+
Convencional
-
+
Primeiro multiplicação implícita
-
+
Cadeia
-
+
RPN
-
+
Ler precisão
-
+
Limitar multiplicação implícita
-
+
Cálculo de intervalo:
-
+
-
+
-
+
Fatorar resultado
@@ -8263,13 +8263,13 @@ e pressione a tecla Enter.
Usar notação E em vez de 10^x
-
+
Preferências
-
-
+
+
milliseconds
ms
@@ -8307,12 +8307,12 @@ e pressione a tecla Enter.
Copiar ASCII não formatado por padrão
-
+
Arredondar números intermediários de zero
-
+
Arredondar números até a metade
@@ -8321,427 +8321,427 @@ e pressione a tecla Enter.
Indicar decimais repetidos
-
+
Idioma:
-
+
Máx. de linhas de histórico guardadas:
-
+
Usar acento circunflexo para XOR bit-a-bit
-
+
Preservar a altura do histórico
-
+
Não altere a altura da lista de histórico quando o teclado ou as bases numéricas estiverem à vista ou ocultas.
-
+
Dicas:
-
+
Mostrar tudo
-
+
Ocultar no teclado
-
+
Ocultar tudo
-
+
Resultado do formato
-
+
Estado da expressão:
-
+
Desligado
-
+
Na lista do histórico
-
+
No campo de expressão
-
+
Atraso da dica do estado:
-
+
Calcular à medida que digita o atraso:
-
+
Expressão no histórico:
-
+
Analisado
-
+
Introduzido
-
+
Introduzido + analisado
-
+
Copiar automaticamente o resultado
-
+
Cálculo simplificado da percentagem
-
+
Permitir a introdução concisa de incertezas
-
+
Interpretar símbolos não reconhecidos como variáveis
-
+
Saída de complemento de dois:
-
+
Entrada de complemento de dois:
-
-
+
+
Binário
-
-
+
+
Hexadecimal
-
+
Bits binários:
-
+
Automática
-
+
Agrupamento de dígitos:
-
+
Nenhum
-
+
Padrão
-
+
Local
-
+
Exibição de intervalo:
-
+
Dígitos Significativos
-
+
Intervalo
-
+
Mais/menos
-
+
Conciso
-
+
Ponto médio
-
+
Inferior
-
+
Superior
-
+
Arredondamento:
-
+
Forma de nùmero complexo:
-
+
Retangular
-
+
Exponencial
-
+
Polar
-
+
Ângulo/fasor
-
+
Ativar unidades
-
+
Abreviar nomes
-
+
Usar prefixos binários para unidades de informações
-
+
Conversão automática de unidades:
-
+
Sem conversão
-
+
Unidades base
-
+
Unidades ideais
-
+
Unidades ideais SI
-
+
Converter para unidades mistas
-
+
Prefixos automáticos de unidades:
-
+
Copiar ASCII não formatado sem unidades
-
+
Reinício necessário
-
+
Reinicie a aplicação para que a alteração de idioma tenha efeito.
-
-
+
+
Padrão
-
+
Arredondar números intermediários para ímpares
-
+
Arredondar números intermediários para zero
-
+
Arredondar números intermediários para aleatórios
-
+
Arredondar os números intermediários para cima
-
+
Arredondar números intermediários para baixo
-
+
Arredondar para zero
-
+
Arredondar do zero
-
+
Arredondar para cima
-
+
Arredondar para baixo
-
+
Sem prefixos
-
+
Prefixos para algumas unidades
-
+
Prefixos também para moedas
-
+
Prefixos para todas as unidades
-
+
Ativar todos os prefixos SI
-
+
Ativar prefixos de denominador
-
+
Activar unidades em constantes físicas
-
+
Cálculo da temperatura:
-
+
Absoluta
-
-
+
+
Relativa
-
+
Híbrido
-
+
Atualizações das taxas de câmbio:
-
-
+
+
%n dia
@@ -8759,53 +8759,53 @@ e pressione a tecla Enter.
QApplication
-
+
Executar expressões e comandos a partir de um ficheiro
-
-
+
+
FICHEIRO
-
+
Iniciar uma nova instância do programa
-
+
Especifica o título da janela
-
+
TÍTULO
-
+
Exibir a versão do programa
-
+
Abrir área de trabalho
-
+
Expressão para calcular
-
+
[EXPRESSION]
-
+
-
+
%1 já está em execução.
-
+
Falha ao carregar definições globais!
-
-
+
+
resposta
-
+
Valor da resposta do histórico
-
+
Índice(s) do histórico
-
+
O índice do histórico %s não existe.
-
+
Última resposta
-
+
Resposta 2
-
+
Resposta 3
-
+
Resposta 4
-
+
Resposta 5
-
+
Memória
-
-
-
-
-
-
-
+
+
+
+
+
+
+
Erro
-
+
Não foi possível gravar preferências em
%1
-
+
Função não encontrada.
-
+
Variável não encontrada.
-
+
Unidade não encontrada.
-
+
Base não suportada.
-
-
+
+
Valor não suportado.
@@ -8928,12 +8928,12 @@ Mesmo assim, você deseja alterar o comportamento padrão e permitir várias ins
QalculateQtSettings
-
+
Atualizações das taxas de câmbio?
-
+
@@ -8951,63 +8951,63 @@ Pretende atualizar as taxas de câmbio agora?
Buscando taxas de câmbio.
-
-
+
+
A obter taxas de câmbio…
-
-
-
-
-
+
+
+
+
+
Erro
-
+
Aviso
-
-
-
-
-
+
+
+
+
+
Informação
-
+
Caminho do executável não encontrado.
-
+
curl não encontrado.
-
+
Falha ao executar o script de atualização.
%1
-
+
Falha ao verificar por atualizações.
-
+
Nenhuma atualização encontrada.
-
+
@@ -9016,8 +9016,8 @@ Do you wish to update to version %3?
Pretende atualizar para a versão %3?
-
-
+
+
@@ -9026,522 +9026,522 @@ You can get version %3 at %2.
Você pode obter a versão %3 em %2.
-
+
Transferir
-
+
%1: %2
-
+
Inserir função
-
+
Inserir função (diálogo)
-
+
Inserir variável
-
+
Resultado aproximado
-
+
Negar
-
+
Inverter
-
+
Inserir unidade
-
+
Inserir texto
-
+
Inserir operador
-
+
Inserir data
-
+
Inserir matriz
-
+
Inserir parênteses inteligentes
-
+
Converter em unidade
-
+
Converter
-
+
Converter em unidade ideal
-
+
Converter em unidades base
-
+
Converter em prefixo ideal
-
+
Converter em número base
-
+
Fatorar resultado
-
+
Expandir resultado
-
+
Expandir frações parciais
-
+
RPN: para baixo
-
+
RPN: para cima
-
+
RPN: trocar
-
+
RPN: copiar
-
+
RPN: lastx
-
+
RPN: eliminar registo
-
+
RPN: limpar pilha
-
+
Definir base de expressão
-
+
Definir base de resultados
-
+
Definir unidade de ângulo em graus
-
+
Definir unidade de ângulo em radianos
-
+
Definir unidade de ângulo em gradianos
-
+
Modo de exibição normal ativo
-
+
Ativar o modo de exibição científica
-
+
Ativar o modo de exibição de engenharia
-
+
Ativar o modo de exibição simples
-
+
Alternar precisão
-
+
Alternar decimais máximos
-
+
Alternar decimais mínimos
-
+
Alternar decimais máx/mín
-
+
Alternar modo RPN
-
+
Mostrar teclado geral
-
+
Alternar teclado de programação
-
+
Alternar teclado de álgebra
-
+
Alternar teclado personalizado
-
+
Mostrar/ocultar teclado
-
+
Pesquisar no histórico
-
+
Limpar histórico
-
+
Mostrar variáveis
-
+
Mostrar funções
-
+
Mostrar unidades
-
+
Mostrar conjuntos de dados
-
+
Armazenar resultado
-
+
MC (limpar memória)
-
+
MR (recordar memória)
-
+
MS (memória de armazenamento)
-
+
M+ (memória mais)
-
+
M- (memória menos)
-
+
Nova variável
-
+
Nova função
-
+
Abrir funções/dados de plotagem
-
+
Abrir números base convertidos
-
+
Abrir conversão de ponto flutuante
-
+
Abrir conversão de calendário
-
+
Abrir ferramenta de cálculo de percentagem
-
+
Abrir tabela periódica
-
+
Atualizar taxas de câmbio
-
+
Copiar resultado
-
+
Inserir resultado
-
+
Abrir menu de modo
-
+
Abrir menu
-
+
Ajuda
-
+
Sair
-
+
Alternar modo de cadeia
-
+
Alternar manter acima
-
+
Mostrar preenchimento (ativar o primeiro item)
-
+
Limpar expressão
-
+
Eliminar
-
+
Backspace
-
+
Home
-
+
End
-
+
Direita
-
+
Esquerda
-
+
Acima
-
+
Abaixo
-
+
Desfazer
-
+
Refazer
-
+
Calcular expressão
-
+
Histórico de expressões seguinte
-
+
Histórico de expressões anterior
-
+
Abrir menu de funções
-
+
Abrir menu de unidades
-
+
-
+
Padrão
-
+
Resultado formatado
-
+
Resultado ASCII não formatado
-
+
Resultado ASCII não formatado sem unidades
-
+
Expressão formatada
-
+
Expressão ASCII não formatada
-
+
Expressão formatada + resultado
-
+
Expressão ASCII não formatada + resultado
@@ -9549,67 +9549,67 @@ Você pode obter a versão %3 em %2.
QalculateTranslator
-
+
Only used when Qt translation is missing
OK
-
+
Only used when Qt translation is missing
Cancelar
-
+
Only used when Qt translation is missing
Fechar
-
+
Only used when Qt translation is missing
&Sim
-
+
Only used when Qt translation is missing
&Não
-
+
Only used when Qt translation is missing
&Abrir
-
+
Only used when Qt translation is missing
&Guardar
-
+
Only used when Qt translation is missing
&Selecionar tudo
-
+
Only used when Qt translation is missing
Ver em:
-
+
Only used when Qt translation is missing
&Nome do ficheiro:
-
+
Only used when Qt translation is missing
Ficheiros do tipo:
@@ -9620,9 +9620,9 @@ Você pode obter a versão %3 em %2.
-
-
-
+
+
+
Menu
@@ -9689,9 +9689,9 @@ Você pode obter a versão %3 em %2.
-
-
-
+
+
+
Funções
@@ -9703,17 +9703,17 @@ Você pode obter a versão %3 em %2.
-
-
-
+
+
+
Unidades
-
-
-
+
+
+
Funções/dados de plotagem
@@ -9749,7 +9749,7 @@ Você pode obter a versão %3 em %2.
-
+
Teclas de atalho
@@ -9776,7 +9776,7 @@ Você pode obter a versão %3 em %2.
-
+
Acerca do %1
@@ -9788,9 +9788,9 @@ Você pode obter a versão %3 em %2.
-
-
-
+
+
+
Modo
@@ -9981,7 +9981,7 @@ Você pode obter a versão %3 em %2.
-
+
Outro
@@ -10066,9 +10066,9 @@ Você pode obter a versão %3 em %2.
-
-
-
+
+
+
Converter
@@ -10078,9 +10078,9 @@ Você pode obter a versão %3 em %2.
-
-
-
+
+
+
Armazenar
@@ -10095,7 +10095,7 @@ Você pode obter a versão %3 em %2.
-
+
Teclado
@@ -10105,7 +10105,7 @@ Você pode obter a versão %3 em %2.
-
+
Bases numéricas
@@ -10142,27 +10142,27 @@ Você pode obter a versão %3 em %2.
Bases numéricas (%1)
-
+
Binário:
-
+
Octal:
-
+
Decimal:
-
+
Hexadecimal:
-
+
Pilha RPN
@@ -10195,253 +10195,253 @@ Você pode obter a versão %3 em %2.
Limpar a pilha RPN (%1)
-
+
Nova função…
-
-
-
+
+
+
Favoritos
-
-
-
+
+
+
Recentes
-
+
Funções de utilizador
-
+
Abrir diálogo
-
+
Mostrar todas as funções
-
+
Unidades de utilizador
-
+
mais
-
+
Prefixos
-
+
Mostrar todas as unidades
-
+
Variáveis de utilizador
-
+
Mostrar todas as variáveis
-
+
Calculadora potente e fácil de usar
-
+
Licença: GNU General Public License versão 2 ou posterior
-
-
-
-
-
-
-
+
+
+
+
+
+
+
Erro
-
-
+
+
Não foi possível gravar definições
-
-
+
+
hexadecimal
-
-
+
+
octal
-
-
+
+
decimal
-
-
+
+
duodecimal
-
-
+
+
binário
-
-
+
+
romanos
-
-
+
+
bijetivo
-
-
-
-
-
-
+
+
+
+
+
+
sexagesimal
-
-
-
-
+
+
+
+
latitude
-
-
-
-
+
+
+
+
longitude
-
-
+
+
hora
-
-
+
+
Falha na análise do fuso horário.
-
-
+
+
bases
-
-
+
+
calendários
-
-
+
+
retangular
-
-
+
+
cartesiano
-
-
+
+
exponencial
-
-
+
+
polar
-
-
+
+
fasor
-
-
+
+
ângulo
-
-
+
+
ideal
-
-
-
-
+
+
+
+
base
-
-
+
+
mesclado
-
-
+
+
fração
-
-
+
+
fatores
@@ -10451,107 +10451,118 @@ Você pode obter a versão %3 em %2.
Mostrar barra de ferrementas
-
+
+
+
+
+
+
+
+
+
+
+
+
Copiar
-
-
+
+
prefixo
-
-
+
+
fração parcial
-
-
+
+
decimais
-
-
+
+
fatorar
-
-
+
+
expandir
-
-
-
-
+
+
+
+
Calculando…
-
-
-
+
+
+
Cancelar
-
-
+
+
Operação RPN
-
+
Fatorando…
-
+
Expandindo frações parciais…
-
+
Expandindo…
-
+
Convertendo…
-
+
Registro RPN Movido
-
-
-
+
+
+
Processando…
-
-
+
+
Matriz
-
-
+
+
Modo de cálculo da temperatura
-
+
@@ -10560,69 +10571,69 @@ Selecione o modo de cálculo da temperatura
(o modo pode ser alterado mais tarde nas preferências).
-
+
Absoluto
-
+
Relativo
-
+
Híbrido
-
+
Seleccione a variante desejada da função sinc.
-
+
Não normalizado
-
+
Normalizado
-
+
Interpretação dos pontos
-
+
Selecione a interpretação dos pontos (".")
(isto pode ser alterado mais tarde nas preferências).
-
+
Ponto e vírgula como separadores decimais
-
+
Ponto como separador de milhares
-
+
Apenas o ponto como separador decimal
-
+
Modo de análise
-
+
@@ -10631,53 +10642,53 @@ Selecione a interpretação de expressões com multiplicação implícita
(isto pode ser alterado mais tarde nas preferências).
-
+
Primeiro multiplicação implícita
-
+
Convencional
-
+
Adaptativa
-
+
Interpretação das percentagens
-
+
Selecionar a interpretação da percentagem de adição
-
+
Adicionar percentagem do valor original
-
+
Adicionar percentagem multiplicada por 1/100
-
-
+
+
Adicionar ação (%1)
-
+
Editar tecla de atalho
-
+
Nova tecla de atalho
@@ -10686,136 +10697,136 @@ Selecione a interpretação de expressões com multiplicação implícita
Ação:
-
+
Valor:
-
+
Definir combinação de teclas
-
+
Pressione a combinação de teclas que deseja usar para a ação.
-
+
Combinação de teclas reservada
-
+
A combinação de teclas já está em uso.
Deseja substituir a ação atual (%1)?
-
+
Questão
-
+
Adicionar…
-
+
Editar…
-
+
Remover
-
+
-
+
%1 (%2) precisa ser instalado separadamente e localizado no caminho de pesquisa do executável para que a plotagem funcione.
-
+
Example of function usage
Exemplo:
-
+
RPN Enter
Enter
-
+
Calcular
-
+
Aplicar à pilha
-
+
Inserir
-
+
Falha ao abrir área de trabalho
-
-
-
+
+
+
Não foi possível guardar a área de trabalho
-
+
Guardar ficheiro?
-
+
Pretende guardar a área de trabalho atual?
-
+
Não perguntar novamente
-
+
Manter aberto
-
+
Valor
-
+
Argumento
-
-
-
-
+
+
+
+
%1:
@@ -10826,186 +10837,185 @@ Deseja substituir a ação atual (%1)?
-
+
Geral
-
+
Programação
-
+
Álgebra
-
+
Personalizado
-
-
+
+
Nenhum
-
- Ocultar teclado numérico
+ Ocultar teclado numérico
-
+
Botões de menu separados
-
+
Repor a posição do teclado
-
+
Apenas ícones
-
+
Apenas texto
-
+
Texto ao lado dos ícones
-
+
Texto por baixo dos ícones
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
<i>Botão direito/pressionar</i>: %1
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
Abrir menu
-
-
-
+
+
+
Bases numéricas
-
-
-
+
+
+
Rode a pilha ou mova o registo selecionado para cima
-
-
-
+
+
+
Rode a pilha ou mova o registo selecionado para baixo
-
-
-
+
+
+
Troque os valores superiores ou mova o valor selecionado para o topo da pilha
-
-
-
+
+
+
Eliminar o valor selecionado ou superior
-
-
-
+
+
+
Introduza o valor superior antes da última operação numérica
-
-
-
+
+
+
Copie o valor selecionado ou superior para o topo da pilha
-
-
-
+
+
+
Limpar a pilha RPN
-
-
+
+
Ação
-
+
Combinação de teclas
-
+
Verdadeiro
-
+
Falso
-
+
Informação
-
-
+
+
optional argument
opcional
-
+
Falha ao abrir %1.
diff --git a/translations/qalculate-qt_ru.ts b/translations/qalculate-qt_ru.ts
index 89f7e92..e3ded6e 100644
--- a/translations/qalculate-qt_ru.ts
+++ b/translations/qalculate-qt_ru.ts
@@ -4367,7 +4367,7 @@ Do you wish to replace the current action (%1)?
- Скрыть цифровую клавиатуру
+ Скрыть цифровую клавиатуру
@@ -4556,6 +4556,14 @@ Do you wish to replace the current action (%1)?
Комбинация клавиш
+
+
+
+
+
+
+
+
UnitEditDialog
diff --git a/translations/qalculate-qt_sl.ts b/translations/qalculate-qt_sl.ts
index 0e65bf1..9be4c70 100644
--- a/translations/qalculate-qt_sl.ts
+++ b/translations/qalculate-qt_sl.ts
@@ -5683,740 +5683,740 @@ Jo želite prepisati?
ExpressionEdit
-
+
matrika
-
+
vektor
-
+
pozitivno
-
+
nepozitivno
-
+
negativno
-
+
nenegativno
-
+
neničelno
-
+
logična vrednost
-
+
celo število
-
+
racionalno
-
+
realno
-
+
kompleksno
-
+
številka
-
+
(ni matrika)
-
+
neznano
-
+
privzete predpostavke
-
+
Predpona:
-
+
Kompleksna kazalčna/fazorska notacija
-
+
Osnovne enote
-
+
Številska osnova
-
+
-
+
Bijektivna osnova 26
-
+
Binarno število
-
+
Koledarji
-
+
Kompleksna oblika cis
-
+
Desetiško število
-
+
Dvanajstiško število
-
+
Kompleksna eksponentna oblika
-
+
Deleži
-
+
16-bitna binarna oblika s plavajočo vejico
-
+
32-bitna binarna oblika s plavajočo vejico
-
+
64-bitna binarna oblika s plavajočo vejico
-
+
80-bitna (x86) binarna oblika s plavajočo vejico
-
+
128-bitna binarna oblika s plavajočo vejico
-
-
+
+
Ulomek
-
+
Desetiški ulomek
-
+
Šestnajstiško število
-
+
Zemljepisna širina
-
+
Zemljepisne dolžine
-
+
Mešane enote
-
+
Osmiško število
-
+
Najustreznejša enota
-
+
Najustreznejša predpona
-
+
Razširjeni parcialni ulomki
-
+
Kompleksna polarna oblika
-
+
Kompleksna pravokotna oblika
-
+
Rimske številke
-
+
Šestdesetiško število
-
+
Časovna oblika
-
-
+
+
Unicode
-
+
Časovna oblika
-
+
Razveljavi
-
+
Uveljavi
-
+
-
+
Kopiraj
-
+
-
+
Izbriši
-
+
Vnesi datum...
-
+
Vnesi matriko...
-
+
-
+
Počisti
-
+
Počisti zgodovino
-
+
Dopolnjevanje
-
+
Brez dopolnjevanja
-
+
Omejeno strogo dopolnjevanje
-
+
Strogo dopolnjevanje
-
+
Omejeno polno dopolnjevanje
-
+
Polno dopolnjevanje
-
+
-
+
Stanje izraza
-
+
Izklopljeno
-
+
-
+
-
+
Z zamudo
-
+
Brez zamude
-
+
-
+
Matrika
-
+
Preveč argumentov za %1().
-
+
argument
-
+
%1:
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
faktoriziraj
-
-
+
+
razširi
-
+
šestnajstiško
-
-
+
+
šestnajstiško število
-
+
osmiško
-
+
osmiško število
-
+
desetiško
-
+
desetiško število
-
+
dvanajstiško
-
-
+
+
dvanajstiško število
-
+
binarno
-
-
+
+
binarno število
-
+
rimsko
-
+
rimske številke
-
+
bijektivno
-
+
bijektivna osnova 26
-
+
BCD
-
+
šestdesetiško
-
+
šestdesetiško število
-
-
+
+
-
-
+
+
-
+
32-bitna plavajoča vejica
-
+
64-bitna plavajoča vejica
-
+
16-bitna plavajoča vejica
-
+
80-bitna (x86) plavajoča vejica
-
+
128-bitna plavajoča vejica
-
+
čas
-
+
časovna oblika
-
+
osnove
-
+
številske osnove
-
-
+
+
koledarji
-
+
najustreznejše
-
+
najustreznejša enota
-
+
predpona
-
+
-
-
+
+
osnova
-
+
osnovne enote
-
+
mešano
-
+
mešane enote
-
+
-
+
-
-
-
+
+
+
ulomek
-
-
+
+
deleži
-
+
parcialni ulomek
-
+
razširjeni parcialni ulomki
-
+
pravokotno
-
+
kartezično
-
+
kompleksna pravokotna oblika
-
+
eksponentno
-
+
kompleksna eksponentna oblika
-
+
polarno
-
+
kompleksna polarna oblika
-
+
kompleksna oblika cis
-
+
kot
-
+
kompleksna kazalčna notacija
-
+
fazor
-
+
kompleksna fazorska notacija
-
+
Časovni pas UTC
-
+
številska osnova %1
-
+
Podatkovni objekt
@@ -6815,28 +6815,28 @@ Jo želite prepisati?
HistoryView
-
+
Vnesi vrednost
-
+
Vnesi besedilo
-
-
+
+
Kopiraj
-
+
Kopiraj neoblikovano ASCII
-
+
@@ -6857,7 +6857,7 @@ in pritisnite Enter.
Zgoraj vpišite matematičen izraz, npr. "5 + 2 / 3", in pritisnite Enter.
-
+
@@ -6867,7 +6867,7 @@ in pritisnite Enter.
-
+
@@ -6877,33 +6877,33 @@ in pritisnite Enter.
-
+
Zaščiti
-
+
Premakni na vrh
-
+
Odstrani
-
+
Počisti
-
+
Besedilo:
-
-
+
+
Iskanje
@@ -6911,29 +6911,29 @@ in pritisnite Enter.
KeypadButton
-
-
+
+
<i>Desni klik/dolg klik</i>: %1
-
-
+
+
<i>Desni klik</i>: %1
-
+
<i>Dolg klik</i>: %1
-
+
-
+
<i>Srednji klik</i>: %1
@@ -7018,7 +7018,7 @@ in pritisnite Enter.
-
+
Interval
@@ -7089,191 +7089,191 @@ in pritisnite Enter.
-
+
Razširi parcialne ulomke
-
+
-
+
-
+
Orodje za izračun odstotkov
-
-
+
+
več
-
+
Vse enote
-
+
Vse spremenljivke
-
+
Dejanje
-
+
Intervalni prikaz
-
+
Prilagodljivo
-
+
Pomembne števke
-
+
Plus/minus
-
+
-
+
-
+
Izračun intervala
-
+
Enačba za varianco
-
+
Intervalna aritmetika
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Assumptions type
Vrsta
-
+
Assumptions sign
Znak
-
+
Privzete predpostavke
-
+
Številka
-
+
Realno
-
+
Racionalno
-
+
Celo število
-
+
Logična vrednost
-
+
Unknown assumptions sign
Neznano
-
+
Neničelno
-
+
Pozitivno
-
+
Nenegativno
-
+
Negativno
-
+
Nepozitivno
@@ -7286,7 +7286,7 @@ in pritisnite Enter.
-
+
Razširi
@@ -7311,74 +7311,74 @@ in pritisnite Enter.
-
+
Levi oklepaj
-
+
Levi vektorski oklepaj
-
+
Desni oklepaj
-
+
Desni vektorski oklepaj
-
+
Pametni oklepaji
-
+
Oklepaji za vektorje
-
+
Ločilnik argumentov
-
-
+
+
Prazen prostor
-
-
+
+
Nova vrstica
-
+
Decimalno mesto
-
+
Prejšnji statični rezultat
-
+
-
+
-
+
Oznaka:
@@ -7387,82 +7387,82 @@ in pritisnite Enter.
Dejanje:
-
+
Brez
-
+
Vrednost:
-
+
Bitni AND
-
+
-
+
Izbriši
-
+
Backspace
-
+
-
+
-
-
+
+
-
-
+
+
-
+
-
+
Bitni OR
-
+
Bitni NOT
-
+
Počisti izraz
-
+
Izračunaj izraz
@@ -7990,99 +7990,99 @@ in pritisnite Enter.
PreferencesDialog
-
+
Videz in občutek
-
+
Številke & operatorji
-
+
Enote & valute
-
+
-
+
Prezri sistemski jezik (zahteva vnovičen zagon)
-
+
Dovoli več oken naenkrat
-
+
Počisti zgodovino ob izhodu
-
+
-
+
-
+
Nastavi ime okna:
-
+
Ime programa
-
+
Rezultat
-
+
Ime programa + rezultat
-
+
-
+
-
+
Slog:
-
+
Default style
-
-
+
+
Temni način
-
+
@@ -8103,22 +8103,22 @@ in pritisnite Enter.
Pisava programa
-
+
Pisava rezultata:
-
+
Pisava izraza:
-
+
Pisava tipkovnice:
-
+
Pisava programa:
@@ -8127,93 +8127,93 @@ in pritisnite Enter.
Prikaži stanje izraza
-
+
-
+
-
+
Počisti izraz
-
+
-
+
-
+
Uporabi tipkovnične tipke za RPN
-
+
Način obdelave:
-
-
+
+
Prilagodljivo
-
+
Običajna
-
+
Sprva implicitno množenje
-
+
-
+
RPN
-
+
Točnost branja
-
+
Omejitev implicitnega množenja
-
+
Izračun intervala:
-
+
Enačba za varianco
-
+
Intervalna aritmetika
-
+
Faktoriziraj rezultat
@@ -8238,13 +8238,13 @@ in pritisnite Enter.
Uporabi E-notacijo namesto 10^x
-
+
Nastavitve
-
-
+
+
milliseconds
ms
@@ -8270,12 +8270,12 @@ in pritisnite Enter.
Prezri pike v številih
-
+
-
+
Zaokroži polovična števila na soda
@@ -8284,427 +8284,427 @@ in pritisnite Enter.
Navedi ponavljajoče se decimalke
-
+
Jezik:
-
+
-
+
Uporabi strešico za bitni XOR
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Stanje izraza:
-
+
Izklopljeno
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
Binarno
-
-
+
+
Šestnajstiško
-
+
-
+
Samodejno
-
+
Števke v skupinah:
-
+
Brez
-
+
Običajno
-
+
Lokalno
-
+
Intervalni prikaz:
-
+
Pomembne števke
-
+
Interval
-
+
Plus/minus
-
+
-
+
Sredina
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Skrajšaj imena
-
+
Uporabi binarne predpone za informacijske enote
-
+
-
+
-
+
Osnovne enote
-
+
Najustreznejše enote
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
Privzeto
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
Posodobitve menjalnih razmerij:
-
-
+
+
%n dan
@@ -8797,97 +8797,97 @@ Do you, despite this, want to change the default behavior and allow multiple sim
-
-
+
+
odgovor
-
+
Zgodovinska vrednost odgovora
-
+
Zgodovinski indeks(i)
-
+
Zgodovinski indeks %s ne obstaja.
-
+
Zadnji odgovor
-
+
Odgovor 2
-
+
Odgovor 3
-
+
Odgovor 4
-
+
Odgovor 5
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
Pisanje nastavitev v
%1 neuspešno
-
+
Funkcija ni bila najdena.
-
+
Spremenljivka ni bila najdena.
-
+
Enota ni bila najdena.
-
+
Nepodprta osnova.
-
-
+
+
@@ -8895,12 +8895,12 @@ Do you, despite this, want to change the default behavior and allow multiple sim
QalculateQtSettings
-
+
Posodobi menjalna razmerja?
-
+
@@ -8924,63 +8924,63 @@ Do you wish to update the exchange rates now?
Pridobivam menjalna razmerja.
-
-
+
+
Pridobivam menjalna razmerja…
-
-
-
-
-
+
+
+
+
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
Pot do zagonske datoteke ni bila najdena.
-
+
Orodje curl ni bilo najdeno.
-
+
Napaka pri zagonu posodobitvenega skripta.
%1
-
+
Napaka pri preverjanju posodobitev.
-
+
Ni novih posodobitev.
-
+
@@ -8989,8 +8989,8 @@ Do you wish to update to version %3?
Želite nadgraditi na različico %3?
-
-
+
+
@@ -8999,522 +8999,522 @@ You can get version %3 at %2.
Različico %3 lahko pridobite na %2.
-
+
-
+
-
+
Vnesi funkcijo
-
+
Vnesi funkcijo (obrazec)
-
+
Vnesi spremenljivko
-
+
-
+
Negiraj
-
+
Inverz
-
+
Vnesi enoto
-
+
Vnesi besedilo
-
+
-
+
Vnesi datum
-
+
Vnesi matriko
-
+
Vnesi pametne oklepaje
-
+
Pretvori v enoto
-
+
Pretvori
-
+
Pretvori v najustreznejšo enoto
-
+
Pretvori v osnovne enote
-
+
Pretvori v najustreznejšo predpono
-
+
Pretvori v številsko osnovo
-
+
Faktoriziraj rezultat
-
+
Razširi rezultat
-
+
Razširi parcialne ulomke
-
+
RPN: dol
-
+
RPN: gor
-
+
RPN: izmenjaj
-
+
RPN: kopiraj
-
+
RPN: lastx
-
+
RPN: izbriši register
-
+
RPN: počisti sklad
-
+
Nastavi osnovo izraza
-
+
Nastavi osnovo rezultata
-
+
Nastavi kotne enote v stopinje
-
+
Nastavi kotne enote v radiane
-
+
Nastavi kotne enote v gradiane
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Prikaži/skrij način RPN
-
+
-
+
Prikaži/skrij tipkovnico
-
+
-
+
-
+
-
+
Zgodovina iskanj
-
+
Počisti zgodovino
-
+
-
+
-
+
-
+
-
+
Shrani rezultat
-
+
-
+
-
+
-
+
-
+
-
+
Nova spremenljivka
-
+
Nova funkcija
-
+
Odpri orodje za izris funkcij/podatkov
-
+
Odpri orodje za pretvorbo številskih osnov
-
+
Odpri orodje za pretvorbo plavajoče vejice
-
+
Odpri orodje za pretvorbo koledarjev
-
+
Odpri orodje za izračun odstotkov
-
+
Odpri periodni sistem
-
+
Posodobi menjalna razmerja
-
+
Kopiraj rezultat
-
+
-
+
-
+
-
+
Pomoč
-
+
Izhod
-
+
-
+
-
+
-
+
Počisti izraz
-
+
Izbriši
-
+
Backspace
-
+
-
+
-
+
-
+
-
+
Gor
-
+
Dol
-
+
Razveljavi
-
+
Uveljavi
-
+
Izračunaj izraz
-
+
-
+
-
+
-
+
-
+
-
+
Privzeto
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -9593,9 +9593,9 @@ Različico %3 lahko pridobite na %2.
-
-
-
+
+
+
Meni
@@ -9666,9 +9666,9 @@ Različico %3 lahko pridobite na %2.
-
-
-
+
+
+
Funkcije
@@ -9680,17 +9680,17 @@ Različico %3 lahko pridobite na %2.
-
-
-
+
+
+
Enote
-
-
-
+
+
+
Izriši funkcije/podatke
@@ -9726,7 +9726,7 @@ Različico %3 lahko pridobite na %2.
-
+
Tipkovne bližnjice
@@ -9753,7 +9753,7 @@ Različico %3 lahko pridobite na %2.
-
+
O %1
@@ -9765,9 +9765,9 @@ Različico %3 lahko pridobite na %2.
-
-
-
+
+
+
Način
@@ -9958,7 +9958,7 @@ Različico %3 lahko pridobite na %2.
-
+
Drugo
@@ -10043,9 +10043,9 @@ Različico %3 lahko pridobite na %2.
-
-
-
+
+
+
Pretvori
@@ -10055,9 +10055,9 @@ Različico %3 lahko pridobite na %2.
-
-
-
+
+
+
Shrani
@@ -10072,7 +10072,7 @@ Različico %3 lahko pridobite na %2.
-
+
Tipkovnica
@@ -10082,7 +10082,7 @@ Različico %3 lahko pridobite na %2.
-
+
Številske osnove
@@ -10119,27 +10119,27 @@ Različico %3 lahko pridobite na %2.
Številske osnove (%1)
-
+
Binarno:
-
+
Osmiško:
-
+
Desetiško:
-
+
Šestnajstiško:
-
+
Sklad RPN
@@ -10172,253 +10172,253 @@ Različico %3 lahko pridobite na %2.
Počisti sklad RPN (%1)
-
+
Nova funkcija…
-
-
-
+
+
+
Priljubljene
-
-
-
+
+
+
-
+
Uporabniške funkcije
-
+
-
+
-
+
Uporabniške enote
-
+
več
-
+
Predpone
-
+
-
+
Uporabniške spremenljivke
-
+
-
+
Zmogljivo računalo, preprosto za uporabo
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
Pisanje definicij neuspešno
-
-
+
+
šestnajstiško
-
-
+
+
osmiško
-
-
+
+
desetiško
-
-
+
+
dvanajstiško
-
-
+
+
binarno
-
-
+
+
rimsko
-
-
+
+
bijektivno
-
-
-
-
-
-
+
+
+
+
+
+
šestdesetiško
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
+
+
čas
-
-
+
+
Obdelava časovnega pasu spodletela.
-
-
+
+
osnove
-
-
+
+
koledarji
-
-
+
+
pravokotno
-
-
+
+
kartezično
-
-
+
+
eksponentno
-
-
+
+
polarno
-
-
+
+
fazor
-
-
+
+
kot
-
-
+
+
najustreznejše
-
-
-
-
+
+
+
+
osnova
-
-
+
+
mešano
-
-
+
+
ulomek
-
-
+
+
deleži
@@ -10428,228 +10428,239 @@ Različico %3 lahko pridobite na %2.
-
+
+
+
+
+
+
+
+
+
+
+
+
Kopiraj
-
-
+
+
predpona
-
-
+
+
parcialni ulomek
-
-
+
+
-
-
+
+
faktoriziraj
-
-
+
+
razširi
-
-
-
-
+
+
+
+
Računam...
-
-
-
+
+
+
Prekliči
-
-
+
+
Operacija RPN
-
+
Faktoriziram...
-
+
Razširjam parcialne ulomke...
-
+
Razširjam...
-
+
Pretvarjam...
-
+
Register RPN premaknjen
-
-
-
+
+
+
Obdelujem...
-
-
+
+
Matrika
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Način obdelave
-
+
-
+
Sprva implicitno množenje
-
+
Običajna
-
+
Prilagodljivo
-
+
-
+
-
+
-
+
-
-
+
+
Dodaj dejanje (%1)
-
+
-
+
Nova tipkovna bližnjica
@@ -10658,136 +10669,136 @@ Please select interpretation of expressions with implicit multiplication
Dejanje:
-
+
Vrednost:
-
+
Nastavi zaporedje tipk
-
+
Pritisnite zaporedje tipk, ki ga želite uporabiti za to dejanje.
-
+
-
+
To zaporedje tipk je že v uporabi.
Ali ga želite prepisati s tem dejanjem (%1)?
-
+
-
+
Dodaj…
-
+
Uredi…
-
+
Odstrani
-
+
-
+
-
+
Example of function usage
Primer:
-
+
RPN Enter
-
+
Izračunaj
-
+
Premakni na sklad
-
+
Vnesi
-
+
-
-
-
+
+
+
-
+
-
+
-
+
Ne vprašaj znova
-
+
Obdrži odprto
-
+
Vrednost
-
+
Argument
-
-
-
-
+
+
+
+
%1:
@@ -10798,186 +10809,181 @@ Ali ga želite prepisati s tem dejanjem (%1)?
-
+
Splošno
-
+
Programirno
-
+
-
+
Po meri
-
-
+
+
Brez
-
-
-
-
-
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
<i>Desni klik/dolg klik</i>: %1
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
Številske osnove
-
-
-
+
+
+
Zavrti sklad ali premakni izbran register gor
-
-
-
+
+
+
Zavrti sklad ali premakni izbran register dol
-
-
-
+
+
+
Izmenjaj vrhnji dve vrednosti ali premakni izbrano vrednost na vrh sklada
-
-
-
+
+
+
Izbriši vrhnjo ali izbrano vrednost
-
-
-
+
+
+
Vnesi vrhnjo vrednost na mesto pred zadnjo številsko operacijo
-
-
-
+
+
+
Kopiraj izbrano ali vrhnjo vrednost na vrh sklada
-
-
-
+
+
+
Počisti sklad RPN
-
-
+
+
Dejanje
-
+
Tipkovno zaporedje
-
+
Pravilno
-
+
Napačno
-
+
Info
-
-
+
+
optional argument
neobvezno
-
+
Napaka pri odpiranju datoteke %1.
diff --git a/translations/qalculate-qt_sv.ts b/translations/qalculate-qt_sv.ts
index 6f47c94..90b0b06 100644
--- a/translations/qalculate-qt_sv.ts
+++ b/translations/qalculate-qt_sv.ts
@@ -6746,82 +6746,82 @@ Vill du ersätta den?
ExpressionEdit
-
+
matris
-
+
vektor
-
+
positiv
-
+
ej positiv
-
+
negativ
-
+
ej negativ
-
+
ej noll
-
+
boolesk
-
+
heltal
-
+
rationell
-
+
reell
-
+
komplex
-
+
nummer
-
+
(inte matris)
-
+
okänd
-
+
förvalda antaganden
@@ -6830,7 +6830,7 @@ Vill du ersätta den?
Prefix
-
+
Prefix:
@@ -6839,7 +6839,7 @@ Vill du ersätta den?
Komplex vinkelnotation
-
+
Grundenheter
@@ -6856,7 +6856,7 @@ Vill du ersätta den?
Binärt tal
-
+
Kalendrar
@@ -6877,7 +6877,7 @@ Vill du ersätta den?
Komplex exponentiell form
-
+
Faktorer
@@ -6902,8 +6902,8 @@ Vill du ersätta den?
128-bit binärt flyttal
-
-
+
+
Bråktal
@@ -6912,12 +6912,12 @@ Vill du ersätta den?
Hexadecimalt tal
-
+
Latitud
-
+
Longitud
@@ -6958,63 +6958,63 @@ Vill du ersätta den?
Tidsformat
-
-
+
+
Unicode
-
+
Uttrycksstatus
-
+
Av
-
+
Med fördröjning
-
+
Utan fördröjning
-
+
Använd inmatningsmetod
-
+
UTC-tidszon
-
+
Ångra
-
+
Komplex vinkelnotation
-
+
Talbas
-
+
Binärkodat decimalt tal (BCD)
-
+
Bijektiv talbas 26
@@ -7027,67 +7027,67 @@ Vill du ersätta den?
Komplex cis-form
-
+
Binärt tal
-
+
Komplex cis-form
-
+
Decimalt tal
-
+
Duodecimalt tal
-
+
Komplex exponentiell form
-
+
16-bit binärt flyttal
-
+
32-bit binärt flyttal
-
+
64-bit binärt flyttal
-
+
80-bit (x86) binärt flyttal
-
+
128-bit binärt flyttal
-
+
Hexadecimalt tal
-
+
Blandade enheter
-
+
Oktalt tal
@@ -7096,132 +7096,132 @@ Vill du ersätta den?
Optimala enheter
-
+
Optimal enhet
-
+
Optimalt prefix
-
+
Expanderade partialbråk
-
+
Komplex polär form
-
+
Komplex rektangulär form
-
+
Romerska siffror
-
+
Sexagesimalt tal
-
+
Tidsformat
-
+
UTC-tidszon
-
+
Gör om
-
+
Klipp ut
-
+
Kopiera
-
+
Klistra in
-
+
Ta bort
-
+
Infoga datum…
-
+
Infoga matris…
-
+
Markera allt
-
+
Rensa
-
+
Töm historiken
-
+
Komplettering
-
+
Ingen komplettering
-
+
Begränsad strikt komplettering
-
+
Strikt komplettering
-
+
Begränsad fullständig komplettering
-
+
Fullständig komplettering
-
+
Fördröjd komplettering
@@ -7230,368 +7230,368 @@ Vill du ersätta den?
Aktivera inmatningsmetod
-
+
Matris
-
+
För många parametrar för %1().
-
+
parameter
-
+
%1:
-
-
+
+
MC (töm minne)
-
-
+
+
MS (spara i minne)
-
-
+
+
M+ (minnesoperation)
-
-
+
+
M− (minnesoperation)
-
-
+
+
faktorisera
-
-
+
+
expandera
-
+
hexadecimal
-
-
+
+
hexadecimalt tal
-
+
oktal
-
+
oktalt tal
-
+
decimal
-
+
decimalt tal
-
+
duodecimal
-
-
+
+
duodecimalt tal
-
+
binär
-
-
+
+
binärt tal
-
+
romersk
-
+
romerska siffror
-
+
bijektiv
-
+
bijektiv talbas 26
-
+
BCD
-
+
sexagesimal
-
+
sexagesimalt tal
-
-
+
+
latitud
-
-
+
+
longitud
-
+
32-bit flyttal
-
+
64-bit flyttal
-
+
16-bit flyttal
-
+
80-bit (x86) flyttal
-
+
128-bit flyttal
-
+
tid
-
+
tidsformat
-
+
baser
-
+
talbaser
-
-
+
+
kalendrar
-
+
optimal
-
+
optimal enhet
-
+
prefix
-
+
optimalt prefix
-
-
+
+
bas
-
+
basenheter
-
+
blandade
-
+
blandade enheter
-
+
decimaler
-
+
decimalform
-
-
-
+
+
+
bråktal
-
-
+
+
faktorer
-
+
Decimalform
-
+
I historiken
-
+
I uttrycksfältet
-
+
partialbråk
-
+
expanderade partialbråk
-
+
rektangulär
-
+
kartesisk
-
+
komplex rektangulär form
-
+
exponentiell
-
+
komplex exponentiell form
-
+
polär
-
+
komplex polär form
-
+
komplex cis-form
-
+
vinkel
-
+
komplex vinkelnotation
-
+
fasvektor
-
+
komplex fasvektornotation
-
+
talbas %1
-
+
Dataobjekt
@@ -8007,8 +8007,8 @@ Vill du ersätta den?
HistoryView
-
-
+
+
Kopiera
@@ -8017,12 +8017,12 @@ Vill du ersätta den?
Kopiera med format
-
+
Infoga värde
-
+
Infoga text
@@ -8031,12 +8031,12 @@ Vill du ersätta den?
Kopiera formaterad text
-
+
Kopiera oformaterad ASCII
-
+
Markera allt
@@ -8057,7 +8057,7 @@ och tryck på entertangenten.
Skriv in ett matematiskt uttryck ovan, t.ex. "5 + 2 / 3", och tryck på entertangenten.
-
+
Växelkurskälla:
@@ -8065,7 +8065,7 @@ och tryck på entertangenten.
-
+
uppdaterad %1
@@ -8073,33 +8073,33 @@ och tryck på entertangenten.
-
+
Skydda
-
+
Lägg överst
-
+
Ta bort
-
+
Rensa
-
+
Text:
-
-
+
+
Sök
@@ -8107,29 +8107,29 @@ och tryck på entertangenten.
KeypadButton
-
-
+
+
<i>Högerklick/långtryck</i>: %1
-
-
+
+
<i>Högerklick</i>: %1
-
+
<i>Långtryck</i>: %1
-
+
Öppna menyn
-
+
<i>Mittenklick</i>: %1
@@ -8214,7 +8214,7 @@ och tryck på entertangenten.
-
+
Intervall
@@ -8285,191 +8285,191 @@ och tryck på entertangenten.
-
+
Expandera partialbråk
-
+
Aktivera enheter i fysiska konstanter
-
+
Alla konstanter
-
+
Procentberäkningsverktyg
-
-
+
+
fler
-
+
Alla enheter
-
+
Alla variabler
-
+
Åtgärd
-
+
Intervallvisning
-
+
Adaptiv
-
+
Signifikanta siffror
-
+
Plus/minus
-
+
Relativ
-
+
Koncis
-
+
Intervallberäkning
-
+
Variansformel
-
+
Intervallaritmetik
-
+
Tillåt koncis notation för inmatning av osäkerhet
-
+
Form för komplexa tal
-
+
Rektangulär
-
+
Exponentiell
-
+
Polär
-
+
Vinkel
-
+
Assumptions type
Typ
-
+
Assumptions sign
Tecken
-
+
Förvalda antaganden
-
+
Nummer
-
+
Reell
-
+
Rationell
-
+
Heltal
-
+
Boolesk
-
+
Unknown assumptions sign
Okänd
-
+
Ej noll
-
+
Positiv
-
+
Ej negativ
-
+
Negativ
-
+
Ej positiv
@@ -8482,7 +8482,7 @@ och tryck på entertangenten.
-
+
Expandera
@@ -8507,69 +8507,69 @@ och tryck på entertangenten.
Ta bort rad
-
+
Vänsterparentes
-
+
Vänster hakparentes för vektorer
-
+
Högerparentes
-
+
Höger hakparentes för vektorer
-
+
Smarta parenteser
-
+
Hakparenteser för vektorer
-
+
Parameteravgränsare
-
-
+
+
Blanksteg
-
-
+
+
Ny rad
-
+
Decimalkomma
-
+
Föregående resultat (statiskt)
-
+
Knappåtgärd
-
+
Etikett:
@@ -8578,12 +8578,12 @@ och tryck på entertangenten.
Åtgärd:
-
+
Ingen
-
+
Värde:
@@ -8592,77 +8592,77 @@ och tryck på entertangenten.
Föregående resultat (statiskt)
-
+
Multiplikation
-
+
Bitvist AND
-
+
Bitvist skift
-
+
Ta bort
-
+
Backsteg
-
+
Addition
-
+
Plus
-
-
+
+
Subraktion
-
-
+
+
Minus
-
+
Division
-
+
Bitvist OR
-
+
Bitvist NOT
-
+
Töm uttrycket
-
+
Beräkna uttrycket
@@ -9218,47 +9218,47 @@ och tryck på entertangenten.
PreferencesDialog
-
+
Utseende och känsla
-
+
Nummer och operatorer
-
+
Enheter och valutor
-
+
Tolkning och beräkning
-
+
Bortse från systemspråket (kräver omstart)
-
+
Språk:
-
+
Tillåt flera instanser
-
+
Töm historiken vid programavslut
-
+
Använd insättningstecken för bitvis XOR
@@ -9267,114 +9267,114 @@ och tryck på entertangenten.
Stäng programmet med Escape
-
+
Placera över andra fönster
-
+
Bevara höjden på historiken
-
+
Ändra inte höjden på historiklistan när knappsats eller talbaser visas eller döljs.
-
+
Fönstertitel:
-
+
Programnamn
-
+
Resultat
-
+
Programnamn + resultat
-
+
Arbetsyta
-
+
Programnamn + arbetsyta
-
+
Verktygstips:
-
+
Visa alla
-
+
Dölj i knappsats
-
+
Dölj alla
-
+
Stil:
-
+
Default style
Förval (kräver omstart)
-
-
+
+
Mörkt läge
-
+
Färglägg resultat
-
+
Uttrycksstatus:
-
+
Av
-
+
I historiken
-
+
I uttrycksfältet
-
+
Fördröjning för statusverktygsstips:
@@ -9383,119 +9383,119 @@ och tryck på entertangenten.
Fördröjning för fortgående beräkningar:
-
+
Kopiera resultat automatiskt
-
+
Tillåt koncis notation för inmatning av osäkerhet
-
+
Tolka okända symboler som variabler
-
+
Tvåkomplementsform för utdata:
-
+
Tvåkomplementsform för indata:
-
-
+
+
Binär
-
-
+
+
Hexadecimal
-
+
Binära bitar:
-
+
Automatiskt
-
+
Koncis
-
+
Avrunda mittemellan-tal till udda siffra
-
+
Avrunda mittemellan-mot noll
-
+
Avrunda mittemellan-tal slumpmässigt
-
+
Avrunda mittemellan-tal uppåt
-
+
Avrunda mittemellan-tal nedåt
-
+
Avrunda mot noll
-
+
Avrunda bort från noll
-
+
Avrunda uppåt
-
+
Avrunda nedåt
-
+
Aktivera enheter
-
+
Kopiera oformaterad ASCII utan enheter
-
+
Omstart krävs
-
+
Vängligen starta om programmet för att språkändringen skall ha effekt.
@@ -9516,22 +9516,22 @@ och tryck på entertangenten.
Anpassat programteckensnitt
-
+
Anpassat teckensnitt för resultat:
-
+
Anpassat teckensnitt för uttryck:
-
+
Anpassat teckensnitt för knappsats:
-
+
Anpassat programteckensnitt:
@@ -9544,63 +9544,63 @@ och tryck på entertangenten.
Fördröjning:
-
+
Uttryck efter beräkning:
-
+
Behåll uttrycket
-
+
Töm uttrycket
-
+
Ersätt med resultatet
-
+
Ersätt med resultatet om kortare
-
+
Använd tangentbordet för RPN
-
+
Tolkningsläge:
-
-
+
+
Adaptiv
-
+
Konventionell
-
+
Implicit multiplikation först
-
+
Kedjeläge
-
+
RPN
@@ -9609,32 +9609,32 @@ och tryck på entertangenten.
Förenklad procentberäkning
-
+
Läs precision
-
+
Begränsa implicit multiplikation
-
+
Intervallberäkning:
-
+
Variansformel
-
+
Intervallaritmetik
-
+
Faktorisera resultatet
@@ -9663,18 +9663,18 @@ och tryck på entertangenten.
Använd E istället för 10^x
-
+
Inställningar
-
+
Formattera resultat
-
-
+
+
milliseconds
ms
@@ -9716,12 +9716,12 @@ och tryck på entertangenten.
Kopiera oformaterad ASCII som förval
-
+
Avrunda mittemellan-tal bort från noll
-
+
Avrunda mittemellan-tal till jämn siffra
@@ -9730,27 +9730,27 @@ och tryck på entertangenten.
Indikera upprepande decimaler
-
+
Uttryck i historiken:
-
+
Tolkat uttryck
-
+
Inknappat uttryck
-
+
Inknappat + tolkat uttryck
-
+
Förenklad procentberäkning
@@ -9759,62 +9759,62 @@ och tryck på entertangenten.
Kopiera resultat som oformatterad ASCII som förval
-
+
Siffergruppering:
-
+
Ingen
-
+
Standard
-
+
Lokal
-
+
Intervallvisning:
-
+
Signifikanta siffror
-
+
Intervall
-
+
Plus/minus
-
+
Medelpunkt
-
+
Undre
-
+
Övre
-
+
Avrundning:
@@ -9839,160 +9839,160 @@ och tryck på entertangenten.
Avrunda all tal mot noll
-
+
Form för komplexa tal:
-
+
Rektangulär
-
+
Exponentiell
-
+
Polär
-
+
Vinkel
-
+
Förkorta namn
-
+
Använd binära prefix för informationsenheter
-
+
Automatisk enhetsomvandling:
-
+
Ingen omvandling
-
+
Grundenheter
-
+
Optimala enheter
-
+
Optimala SI-enheter
-
+
Omvandla till blandade enheter
-
+
Automatiska enhetsprefix:
-
-
+
+
Förval
-
+
Högst antal historikrader sparade:
-
+
Stäng programmet med Escape
-
+
Fördröjning för fortgående beräkningar:
-
+
Inga prefix
-
+
Prefix för vissa enheter
-
+
Prefix även för valutor
-
+
Prefix för alla enheter
-
+
Använd alla SI-prefix
-
+
Aktivera prefix i nämnaren
-
+
Aktivera enheter i fysiska konstanter
-
+
Temperaturberäkning:
-
+
Absolut
-
-
+
+
Relativ
-
+
Hybrid
-
+
Växelkursuppdateringer:
-
-
+
+
%n dag
@@ -10081,97 +10081,97 @@ Vill du trots det ändra förinställt beteende och tillåta flera samtidiga ins
-
-
+
+
svar
-
+
Svarsvärde från historiken
-
+
Index i historiken
-
+
Index %s finns inte i historiken.
-
+
Senaste svaret
-
+
Svar 2
-
+
Svar 3
-
+
Svar 4
-
+
Svar 5
-
+
Minne
-
-
-
-
-
-
-
+
+
+
+
+
+
+
Fel
-
+
Kunde inte spara inställningar till
%1
-
+
Funktionen hittades ej.
-
+
Variabeln hittades ej.
-
+
Enheten hittades ej.
-
+
Basen stöds ej.
-
-
+
+
Värdet stöds ej.
@@ -10179,12 +10179,12 @@ Vill du trots det ändra förinställt beteende och tillåta flera samtidiga ins
QalculateQtSettings
-
+
Uppdatera växelkurser?
-
+
@@ -10202,568 +10202,568 @@ Vill du uppdatera växelkurserna nu?
Hämtar växelkurser.
-
-
+
+
Hämtar växelkurser…
-
-
-
-
-
+
+
+
+
+
Fel
-
+
Varning
-
-
-
-
-
+
+
+
+
+
Information
-
+
Sökvägen till programmet hittades ej.
-
+
curl hittades ej.
-
+
Misslyckades med att köra sriptet.
%1
-
+
Ladda ner
-
+
%1: %2
-
+
Infoga funktion
-
+
Infoga funktion (dialog)
-
+
Infoga variabel
-
+
Approximera resultat
-
+
Negera
-
+
Invertera
-
+
Infoga enhet
-
+
Infoga text
-
+
Infoga operator
-
+
Infoga datum
-
+
Infoga matris
-
+
Infoga smarta parenteser
-
+
Omvandla till enhet
-
+
Omvandla
-
+
Omvandla till optimal enhet
-
+
Omvandla till basenheter
-
+
Omvandla till optimalt prefix
-
+
Omvandla till talbas
-
+
Faktorisera resultatet
-
+
Expandera resultatet
-
+
Expandera partialbråk
-
+
RPN: ner
-
+
RPN: upp
-
+
RPN: byt plats
-
+
RPN: kopiera
-
+
RPN: lastx
-
+
RPN: ta bort register
-
+
RPN: töm stacken
-
+
Ange talbas i uttryck
-
+
Ange talbas i resultat
-
+
Ange vinkelenhet till grader
-
+
Ange vinkelenhet till radianer
-
+
Ange vinkelenhet till gradienter
-
+
Aktivera normalt visningsläge
-
+
Aktivera vetenskapligt visningsläge
-
+
Aktivera tekniskt visningsläge
-
+
Aktivera enkelt visningsläge
-
+
Växla precision
-
+
(Av)aktivera max decmaler
-
+
(Av)aktivera min decmaler
-
+
(Av)aktivera min/max decmaler
-
+
(Av)aktivera RPN-läge
-
+
Visa/dölj generell knappsats
-
+
Visa/dölj programmeringsknappsatsen
-
+
Visa/dölj alegbraknappsatsen
-
+
Visa/dölj anpassad knappsats
-
+
Visa/göm knappsatsen
-
+
Sök i historiken
-
+
Töm historiken
-
+
Visa variabler
-
+
Visa funktioner
-
+
Visa enheter
-
+
Visa dataset
-
+
Spara resultatet
-
+
MC (töm minne)
-
+
MR (återkalla minne)
-
+
MS (spara i minne)
-
+
M+ (minnesoperation)
-
+
M− (minnesoperation)
-
+
Ny variabel
-
+
Ny funktion
-
+
Öppna rita funktions-/datadiagram
-
+
Öppna omvandla mellan talbaser
-
+
Öppna flyttalsomvandling
-
+
Öppna kalenderomvandling
-
+
Öppna procentberäkningsverktyg
-
+
Öppna periodiska systemet
-
+
Uppdatera växelkurser
-
+
Kopiera resultatet
-
+
Infoga resultat
-
+
Öppna lägesmenyn
-
+
Öppna menyn
-
+
Hjälp
-
+
Avsluta
-
+
(Av)aktivera kedjeläge
-
+
(Av)aktivera placera överst
-
+
Visa komplettering (aktivera första posten)
-
+
Töm uttrycket
-
+
Ta bort
-
+
Backsteg
-
+
Till början
-
+
Till slutet
-
+
Höger
-
+
Vänster
-
+
Upp
-
+
Ner
-
+
Ångra
-
+
Gör om
-
+
Beräkna uttrycket
-
+
Nästa uttryck i historiken
-
+
Föregående uttryck i historiken
-
+
Öppna functionsmenyn
-
+
Öppna enhetsmenyn
-
+
Öppna variabelmenyn
-
+
Förval
-
+
Formaterat resultat
-
+
Oformaterat ASCII-resultat
-
+
Oformaterat ASCII-resultat utan enheter
-
+
Formaterat uttryck
-
+
Oformaterat ASCII-uttryck
-
+
Formaterat uttryck + resultat
-
+
Oformaterat ASCII-uttryck + resultat
@@ -10778,17 +10778,17 @@ Vill du uppdatera växelkurserna nu?
%s
-
+
Misslyckades med att söka efter uppdateringar.
-
+
Inga uppdatering hittades.
-
+
@@ -10797,8 +10797,8 @@ Do you wish to update to version %3?
Vill du uppdatera till version %3?
-
-
+
+
@@ -10881,9 +10881,9 @@ Du kan hämta version %3 på %2.
-
-
-
+
+
+
Meny
@@ -10928,9 +10928,9 @@ Du kan hämta version %3 på %2.
-
-
-
+
+
+
Rita funktions-/datadiagram
@@ -10982,7 +10982,7 @@ Du kan hämta version %3 på %2.
-
+
Om %1
@@ -10994,9 +10994,9 @@ Du kan hämta version %3 på %2.
-
-
-
+
+
+
Läge
@@ -11173,7 +11173,7 @@ Du kan hämta version %3 på %2.
-
+
Annan
@@ -11247,26 +11247,26 @@ Du kan hämta version %3 på %2.
-
-
-
+
+
+
Omvandla
-
-
-
+
+
+
Spara
-
-
-
+
+
+
Funktioner
@@ -11282,9 +11282,9 @@ Du kan hämta version %3 på %2.
-
-
-
+
+
+
Enheter
@@ -11341,7 +11341,7 @@ Du kan hämta version %3 på %2.
-
+
Knappsats
@@ -11351,7 +11351,7 @@ Du kan hämta version %3 på %2.
-
+
Talbaser
@@ -11388,27 +11388,27 @@ Du kan hämta version %3 på %2.
Talbaser (%1)
-
+
Binär:
-
+
Oktal:
-
+
Decimal:
-
+
Hexadecimal:
-
+
RPN-stack
@@ -11441,343 +11441,354 @@ Du kan hämta version %3 på %2.
Töm RPN-stacken (%1)
-
+
Ny funktion…
-
-
-
+
+
+
Favoriter
-
-
-
+
+
+
Tidigare
-
+
Användarfunktioner
-
+
Öppna dialogruta
-
+
Visa alla funktioner
-
+
Användarenheter
-
+
fler
-
+
Prefix
-
+
Visa alla enheter
-
+
Användarvariabler
-
+
Visa alla variabler
-
+
Kraftfull och användarvänlig miniräknare
-
+
Licens: GNU General Public License version 2 eller senare
-
-
-
-
-
-
-
+
+
+
+
+
+
+
Fel
-
-
+
+
Kunde inte spara definitioner
-
-
+
+
hexadecimal
-
-
+
+
oktal
-
-
+
+
decimal
-
-
+
+
duodecimal
-
-
+
+
binär
-
-
+
+
romersk
-
-
+
+
bijektiv
-
-
-
-
-
-
+
+
+
+
+
+
sexagesimal
-
-
-
-
+
+
+
+
latitud
-
-
-
-
+
+
+
+
longitud
-
-
+
+
tid
-
-
+
+
Läsning av tidszon misslyckades.
-
-
+
+
baser
-
-
+
+
kalendrar
-
-
+
+
rektangulär
-
-
+
+
kartesisk
-
-
+
+
exponentiell
-
-
+
+
polär
-
-
+
+
fasvektor
-
-
+
+
vinkel
-
-
+
+
optimal
-
-
-
-
+
+
+
+
bas
-
-
+
+
blandade
-
-
+
+
bråktal
-
-
+
+
faktorer
-
-
+
+
+
+ Numerisk knappsats
+
+
+
+
+ Visa alltid numerisk knappsats
+
+
+
+
partialbråk
-
-
+
+
faktorisera
-
-
+
+
expandera
-
-
-
-
+
+
+
+
Beräknar…
-
-
-
+
+
+
Avbryt
-
-
+
+
RPN operation
-
+
Faktoriserar…
-
+
Expanderar partialbråk…
-
+
Expanderar…
-
+
Omvandlar…
-
-
+
+
Läge för temperaturberäkningar
-
+
Vänligen välj önskad variant av sinc-funktionen.
-
+
Onormaliserad
-
+
Normaliserad
-
+
Tolkningsläge
-
+
@@ -11786,33 +11797,33 @@ Vänligen välj tolkning av uttryck med implicit multiplikation
(detta kan senare ändras i inställningarna).
-
+
Implicit multiplikation först
-
+
Konventionell
-
+
Adaptiv
-
-
+
+
Lägg till åtgärd (%1)
-
+
Redigera kortkommando
-
+
Nytt kortkommando
@@ -11821,108 +11832,108 @@ Vänligen välj tolkning av uttryck med implicit multiplikation
Åtgärd:
-
+
Värde:
-
+
Ange tangentkombination
-
+
Tryck tangentkombinationen som du önskar använda för åtgärden.
-
+
Reserverad tangentkombination
-
+
Tangentkombinationen används redan. Vill du ersätta den nuvarande åtgärden (%1)?
-
+
Fråga
-
+
Lägg till…
-
+
Redigera…
-
+
Ta bort
-
+
Example of function usage
Exempel:
-
+
Misslyckades med att öppna arbetsyta
-
-
-
+
+
+
Misslyckades med att spara arbetsyta
-
+
Spara fil?
-
+
Vill du spara den öppna arbetsytan?
-
+
Fråga inte igen
-
-
-
-
+
+
+
+
%1:
-
-
+
+
optional argument
frivillig
-
+
Misslyckades med att öppna %1.
%2
-
+
RPN-register flyttades
@@ -11958,7 +11969,7 @@ Do you wish to replace the current action (%1)?
-
+
Kortkommandon
@@ -11969,183 +11980,182 @@ Do you wish to replace the current action (%1)?
-
+
Allmän
-
+
Programmering
-
+
Algebra
-
+
Anpassad
-
-
+
+
Ingen
-
- Dölj numerisk knappsats
+ Dölj numerisk knappsats
-
+
Separata menyknappar
-
+
Återställ knappsatsposition
-
+
Enbart ikoner
-
+
Enbart text
-
+
Text bredvid ikoner
-
+
Text under ikoner
-
+
Kopiera
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
<i>Högerklick/långtryck</i>: %1
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
Öppna menyn
-
-
-
+
+
+
Talbaser
-
-
-
+
+
+
Rotera stacken eller flytta markerat register uppåt
-
-
-
+
+
+
Rotera stacken eller flytta markerat register nedåt
-
-
-
+
+
+
Byt plats på de två översta värdena eller flytta markerat värdet till toppen av stacken
-
-
-
+
+
+
Ta bort det översta eller det markerade värdet
-
-
-
+
+
+
Lägg till det översta värdet från innan den senaste numeriska operationen
-
-
-
+
+
+
Kopiera det valda eller det översta värdet till toppen av stacken
-
-
-
+
+
+
Töm RPN-stacken
-
-
+
+
prefix
-
-
+
+
decimaler
-
-
-
+
+
+
Behandlar…
-
-
+
+
Matris
-
+
@@ -12154,85 +12164,85 @@ Vänligen välj ett läge för temperaturberäkningar
(läget kan senare ändras i inställningarna).
-
+
Absolut
-
+
Relativ
-
+
Hybrid
-
+
Tolkning av punkter
-
+
Vänligen välj hur punkter ska tolkas
(detta kan senare ändras i inställningarna).
-
+
Använd både punkt komma som decimaltecken
-
+
Punkt som tusentalsavgränsare
-
+
Enbart punkt som decimaltecken
-
+
Procenttolkning
-
+
Vänligen välj tolkning av procentaddition
-
+
Addera procent av ursprungligt värde
-
+
Addera procentenheter multiplicerade med 1/100
-
-
+
+
Åtgärd
-
+
Tangentkombination
-
+
Gnuplot hittades ej
-
+
%1 (%2) måste installeras separat, och hittas i sökvägen för binärer, för att för att diagram ska kunna visas.
@@ -12241,53 +12251,53 @@ Vänligen välj ett läge för temperaturberäkningar
Exempel:
-
+
RPN Enter
Enter
-
+
Beräkna
-
+
Infoga
-
+
Applicera på stacken
-
+
Håll öppen
-
+
Värde
-
+
Parameter
-
+
Sant
-
+
Falskt
-
+
Info
diff --git a/translations/qalculate-qt_zh_CN.ts b/translations/qalculate-qt_zh_CN.ts
index 322f449..5ae4376 100644
--- a/translations/qalculate-qt_zh_CN.ts
+++ b/translations/qalculate-qt_zh_CN.ts
@@ -5754,740 +5754,740 @@ Do you want to overwrite the function?
ExpressionEdit
-
+
矩阵
-
+
向量
-
+
正数
-
+
非正数
-
+
负数
-
+
非负数
-
+
非零
-
+
布尔值
-
+
整数
-
+
有理数
-
+
实数
-
+
复数
-
+
数
-
+
(非矩阵)
-
+
未知
-
+
默认假设
-
+
前缀:
-
+
复角/相量记号
-
+
基本单位
-
+
数字进制
-
+
二進碼十進數
-
+
双射基-26
-
+
二进制数
-
+
日历
-
+
复纯虚数指数形式
-
+
十进制数
-
+
十二进制数
-
+
复指数形式
-
+
因子
-
+
16位浮点二进制格式
-
+
32位浮点二进制格式
-
+
64位浮点二进制格式
-
+
80位(x86)浮点二进制格式
-
+
128位浮点二进制格式
-
-
+
+
分数
-
+
十进分数
-
+
十六进制数
-
+
纬度
-
+
经度
-
+
混合单位
-
+
八进制数
-
+
最优单位
-
+
最优前缀
-
+
展开部分分式
-
+
复极坐标形式
-
+
复矩形形式
-
+
罗马数字
-
+
六十进制数
-
+
时间格式
-
-
+
+
Unicode
-
+
UTC时区
-
+
撤消
-
+
重做
-
+
剪切
-
+
复制
-
+
粘贴
-
+
删除
-
+
插入日期…
-
+
插入矩阵…
-
+
全选
-
+
清除
-
+
清除历史记录
-
+
补全
-
+
无补全
-
+
有限严格补全
-
+
严格补全
-
+
有限全面补全
-
+
全面补全
-
+
延迟补全
-
+
表达式状态
-
+
关
-
+
-
+
-
+
有延迟
-
+
不延误
-
+
使用输入法
-
+
矩阵
-
+
%1()的参数太多。
-
+
参数
-
+
%1:
-
-
+
+
MC(存值清除)
-
-
+
+
MS(存值存入)
-
-
+
+
M+(存值加上)
-
-
+
+
M−(存值减去)
-
-
+
+
分解
-
-
+
+
展开
-
+
十六进制
-
-
+
+
十六进制数
-
+
八进制
-
+
八进制数
-
+
十进制
-
+
十进制数
-
+
十二进制
-
-
+
+
十二进制数
-
+
二进制
-
-
+
+
二进制数
-
+
罗马
-
+
罗马数字
-
+
双射
-
+
双射基-26
-
+
二進碼十進數
-
+
六十进制
-
+
六进制数
-
-
+
+
纬度
-
-
+
+
经度
-
+
32位浮点
-
+
64位浮点
-
+
16位浮点
-
+
80位(x86)浮点
-
+
128位浮点
-
+
时间
-
+
时间格式
-
+
进制
-
+
数字进制
-
-
+
+
日历
-
+
最优
-
+
最优单位
-
+
前缀
-
+
-
-
+
+
基本
-
+
基本单位
-
+
混合
-
+
混合单位
-
+
-
+
-
-
-
+
+
+
分数
-
-
+
+
因子
-
+
部分分式
-
+
已展开部分分式
-
+
矩形
-
+
笛卡尔
-
+
复矩形形式
-
+
指数型
-
+
复指数形式
-
+
极坐标
-
+
复极坐标形式
-
+
复纯虚数指数(cis)形式
-
+
角度
-
+
复角记号
-
+
相量
-
+
复相量记号
-
+
UTC时区
-
+
数字进制 %1
-
+
数据对象
@@ -6886,18 +6886,18 @@ Do you want to overwrite the function?
HistoryView
-
+
插入值
-
+
插入文本
-
-
+
+
复制
@@ -6906,12 +6906,12 @@ Do you want to overwrite the function?
复制格式化文本
-
+
复制未格式化的 ASCII
-
+
全选
@@ -6932,47 +6932,47 @@ and press the enter key.
在上面键入一个数学表达式,例如“5+2/3”,然后按Enter键。
-
+
-
+
-
+
保护
-
+
移动到顶部
-
+
移除
-
+
清除
-
+
文本:
-
-
+
+
搜索
@@ -6980,29 +6980,29 @@ and press the enter key.
KeypadButton
-
-
+
+
<i>右键/长按</i>: %1
-
-
+
+
<i>右键</i>: %1
-
+
<i>长按</i>: %1
-
+
-
+
<i>中键</i>: %1
@@ -7087,7 +7087,7 @@ and press the enter key.
-
+
区间
@@ -7158,191 +7158,191 @@ and press the enter key.
-
+
展开部分分式
-
+
物理常数单位
-
+
Toutes les constantes
-
+
百分比计算
-
-
+
+
更多
-
+
所有单位
-
+
所有变量
-
+
动作
-
+
区间显示
-
+
自适应
-
+
有效数字
-
+
加/减
-
+
相对
-
+
-
+
区间计算
-
+
方差公式
-
+
区间运算
-
+
-
+
复数形式
-
+
矩形
-
+
指数型
-
+
极坐标
-
+
角/相量
-
+
Assumptions type
类型
-
+
Assumptions sign
符号
-
+
默认假设
-
+
数字
-
+
实数
-
+
有理数
-
+
整数
-
+
布尔值
-
+
Unknown assumptions sign
未知数
-
+
非零数
-
+
正数
-
+
非负数
-
+
负数
-
+
非正数
@@ -7355,7 +7355,7 @@ and press the enter key.
-
+
展开
@@ -7380,74 +7380,74 @@ and press the enter key.
-
+
左括号
-
+
左向量括号
-
+
右括号
-
+
右向量括号
-
+
智能括号
-
+
向量括号
-
+
参数分隔符
-
-
+
+
空白处
-
-
+
+
新建行
-
+
小数点
-
+
前一个结果(静态)
-
+
-
+
按钮动作
-
+
标签:
@@ -7456,82 +7456,82 @@ and press the enter key.
动作:
-
+
无
-
+
值:
-
+
按位与
-
+
按位移位
-
+
删除
-
+
退格键
-
+
-
+
-
-
+
+
-
-
+
+
-
+
-
+
按位或
-
+
按位非
-
+
清除表达式
-
+
计算表达式
@@ -8059,84 +8059,84 @@ and press the enter key.
PreferencesDialog
-
+
外观
-
+
数字和运算符
-
+
单位和货币
-
+
解析计算
-
+
忽略系统语言(需要重启)
-
+
允许多个实例
-
+
退出时清除历史记录
-
+
-
+
窗口标题:
-
+
应用程序名称
-
+
结果
-
+
应用程序名称+结果
-
+
风格:
-
+
Default style
默认值(需要重启)
-
-
+
+
黑暗模式
-
+
@@ -8157,37 +8157,37 @@ and press the enter key.
自定义应用程序字体
-
+
首选项
-
+
工作区
-
+
应用程序名称+工作区
-
+
自定义结果字体:
-
+
自定义表达式字体:
-
+
自定义键盘字体:
-
+
自定义应用程序字体:
@@ -8200,105 +8200,105 @@ and press the enter key.
延时:
-
-
+
+
milliseconds
ms
-
+
-
+
-
+
清除表达式
-
+
-
+
-
+
用键盘键操作RPN
-
+
-
+
解析模式:
-
-
+
+
自适应
-
+
常规
-
+
隐式优先
-
+
链式
-
+
RPN
-
+
读取精度
-
+
限制隐式乘法
-
+
区间计算:
-
+
方差公式
-
+
区间运算
-
+
分解结果
@@ -8339,7 +8339,7 @@ and press the enter key.
忽略数字中的点
-
+
中数约至偶数
@@ -8348,432 +8348,432 @@ and press the enter key.
指示循环小数
-
+
语言:
-
+
-
+
插入符号(^)作为按位异或
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
表达式状态:
-
+
关
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
二进制
-
-
+
+
十六进制
-
+
-
+
自动的
-
+
数字分节:
-
+
无
-
+
标准
-
+
本地
-
+
区间显示:
-
+
有效数字
-
+
区间
-
+
加/减
-
+
-
+
中点
-
+
-
+
-
+
-
+
-
+
复数形式:
-
+
矩形
-
+
指数型
-
+
极坐标
-
+
角/相量
-
+
-
+
缩写名称
-
+
信息单位使用二进制前缀
-
+
-
+
-
+
基本单位
-
+
最优单位
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
默认值
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
无前缀
-
+
-
+
-
+
-
+
启用所有SI前缀
-
+
启用分母前缀
-
+
物理常数单位
-
+
温度计算模式:
-
+
绝对
-
-
+
+
相对
-
+
混合
-
+
汇率更新:
-
-
+
+
%n天
@@ -8859,97 +8859,97 @@ Do you, despite this, want to change the default behavior and allow multiple sim
加载全局定义失败!
-
-
+
+
答案
-
+
历史答案
-
+
历史索引
-
+
历史索引 %s 不存在。
-
+
上一答案
-
+
答案二
-
+
答案三
-
+
答案四
-
+
答案五
-
+
存值
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
无法将首选项写入
%1
-
+
未找到函数。
-
+
未找到变量。
-
+
未找到单位。
-
+
不支持该进制。
-
-
+
+
@@ -8957,12 +8957,12 @@ Do you, despite this, want to change the default behavior and allow multiple sim
QalculateQtSettings
-
+
更新汇率?
-
+
@@ -8977,63 +8977,63 @@ Do you wish to update the exchange rates now?
获取汇率。
-
-
+
+
获取汇率…
-
-
-
-
-
+
+
+
+
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
未找到可执行文件的路径。
-
+
未找到 curl。
-
+
运行更新脚本失败。
%1
-
+
无法检查更新。
-
+
无更新。
-
+
@@ -9042,8 +9042,8 @@ Do you wish to update to version %3?
是否要更新到版本 %3?
-
-
+
+
@@ -9052,522 +9052,522 @@ You can get version %3 at %2.
您可以在 %2 获取。
-
+
-
+
-
+
插入函数
-
+
插入函数(对话框)
-
+
插入变量
-
+
-
+
取反
-
+
取倒
-
+
插入单位
-
+
插入文本
-
+
-
+
插入日期
-
+
插入矩阵
-
+
插入智能括号
-
+
换算为单位
-
+
换算
-
+
换算为最优单位
-
+
换算为基本单位
-
+
换算为最优前缀
-
+
换算为数字进制
-
+
分解结果
-
+
展开结果
-
+
展开部分分式
-
+
RPN: 向下
-
+
RPN: 向上
-
+
RPN: 交换
-
+
RPN: 复制
-
+
RPN: lastx
-
+
RPN: 删除寄存器
-
+
RPN: 清空栈
-
+
设置表达式进制
-
+
设置结果进制
-
+
将角度单位设为度
-
+
将角度单位设为弧度
-
+
将角度单位设为梯度
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
切换RPN模式
-
+
-
+
切换编程键盘
-
+
-
+
-
+
-
+
搜索历史记录
-
+
清除历史记录
-
+
-
+
-
+
-
+
-
+
存储结果
-
+
MC(存值清除)
-
+
MR(存值读取)
-
+
MS(存值存入)
-
+
M+(存值加上)
-
+
M−(存值减去)
-
+
新建变量
-
+
新建函数
-
+
打开函数/数据作图
-
+
打开进制换算
-
+
打开浮点换算
-
+
打开日历换算
-
+
打开百分比计算
-
+
打开元素周期表
-
+
更新汇率
-
+
复制结果
-
+
-
+
-
+
-
+
帮助
-
+
退出
-
+
切换链式模式
-
+
-
+
-
+
清除表达式
-
+
删除
-
+
退格键
-
+
-
+
-
+
-
+
-
+
向上
-
+
向下
-
+
撤消
-
+
重做
-
+
计算表达式
-
+
-
+
-
+
-
+
-
+
-
+
默认值
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -9646,9 +9646,9 @@ You can get version %3 at %2.
-
-
-
+
+
+
@@ -9715,9 +9715,9 @@ You can get version %3 at %2.
-
-
-
+
+
+
函数
@@ -9729,17 +9729,17 @@ You can get version %3 at %2.
-
-
-
+
+
+
单位
-
-
-
+
+
+
函数/数据绘图
@@ -9775,7 +9775,7 @@ You can get version %3 at %2.
-
+
键盘快捷键
@@ -9802,7 +9802,7 @@ You can get version %3 at %2.
-
+
关于%1
@@ -9814,9 +9814,9 @@ You can get version %3 at %2.
-
-
-
+
+
+
模式
@@ -10007,7 +10007,7 @@ You can get version %3 at %2.
-
+
其他
@@ -10092,9 +10092,9 @@ You can get version %3 at %2.
-
-
-
+
+
+
换算
@@ -10104,9 +10104,9 @@ You can get version %3 at %2.
-
-
-
+
+
+
存储
@@ -10121,7 +10121,7 @@ You can get version %3 at %2.
-
+
键盘
@@ -10131,7 +10131,7 @@ You can get version %3 at %2.
-
+
数字进制
@@ -10168,27 +10168,27 @@ You can get version %3 at %2.
数字进制(%1)
-
+
二进制:
-
+
八进制:
-
+
十进制:
-
+
十六进制:
-
+
RPN栈
@@ -10221,253 +10221,253 @@ You can get version %3 at %2.
清空RPN栈(%1)
-
+
新建函数…
-
-
-
+
+
+
收藏夹
-
-
-
+
+
+
-
+
用户功能
-
+
打开对话框
-
+
显示所有功能
-
+
用户单位
-
+
更多
-
+
前缀
-
+
显示所有单位
-
+
用户变量
-
+
显示所有变量
-
+
强大而易用的计算器
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
无法写入定义
-
-
+
+
十六进制
-
-
+
+
八进制
-
-
+
+
十进制
-
-
+
+
十二进制
-
-
+
+
二进制
-
-
+
+
罗马
-
-
+
+
双射
-
-
-
-
-
-
+
+
+
+
+
+
六十进制
-
-
-
-
+
+
+
+
纬度
-
-
-
-
+
+
+
+
经度
-
-
+
+
时间
-
-
+
+
时区分析失败。
-
-
+
+
进制
-
-
+
+
日历
-
-
+
+
矩形
-
-
+
+
笛卡尔
-
-
+
+
指数型
-
-
+
+
极坐标
-
-
+
+
相量
-
-
+
+
角度
-
-
+
+
最优
-
-
-
-
+
+
+
+
基本
-
-
+
+
混合
-
-
+
+
分数
-
-
+
+
因子
@@ -10477,107 +10477,118 @@ You can get version %3 at %2.
-
+
+
+
+
+
+
+
+
+
+
+
+
复制
-
-
+
+
前缀
-
-
+
+
部分分式
-
-
+
+
-
-
+
+
分解
-
-
+
+
展开
-
-
-
-
+
+
+
+
计算中…
-
-
-
+
+
+
取消
-
-
+
+
RPN操作
-
+
分解中…
-
+
展开部分分式…
-
+
展开中…
-
+
换算中…
-
+
RPN寄存器已移动
-
-
-
+
+
+
处理中…
-
-
+
+
矩阵
-
-
+
+
温度计算模式
-
+
@@ -10586,121 +10597,121 @@ Please select temperature calculation mode
(以后可以在偏好设置中更改)。
-
+
绝对
-
+
相对
-
+
混合
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
解析模式
-
+
-
+
隐式优先
-
+
常规
-
+
自适应
-
+
-
+
-
+
-
+
-
-
+
+
添加动作(%1)
-
+
-
+
新建键盘快捷键
@@ -10709,136 +10720,136 @@ Please select interpretation of expressions with implicit multiplication
动作:
-
+
值:
-
+
设置组合键
-
+
按要用于操作的组合键。
-
+
-
+
组合键已被占用。
是否要替换当前操作(%1)?
-
+
-
+
加…
-
+
编辑…
-
+
移除
-
+
未找到gnuplot
-
+
%1 (%2) 需要单独安装,并在可执行的搜索路径中找到,才能进行绘图。
-
+
Example of function usage
示例:
-
+
RPN Enter
开始
-
+
计算
-
+
应用于栈
-
+
插入
-
+
-
-
-
+
+
+
-
+
-
+
-
+
不再询问
-
+
保持打开状态
-
+
值
-
+
参数
-
-
-
-
+
+
+
+
%1:
@@ -10849,186 +10860,181 @@ Do you wish to replace the current action (%1)?
-
+
通用
-
+
编程
-
+
代数
-
+
定制
-
-
+
+
无
-
-
-
-
-
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
<i>右键/长按</i>: %1
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
数字进制
-
-
-
+
+
+
循环栈或上移选定寄存器
-
-
-
+
+
+
循环栈或下移选定寄存器
-
-
-
+
+
+
交换顶部两个值或将所选值移到栈顶
-
-
-
+
+
+
删除顶部值或所选值
-
-
-
+
+
+
输入上次数值操作前的顶部值
-
-
-
+
+
+
将选定的或顶部值复制到栈顶
-
-
-
+
+
+
清空RPN栈
-
-
+
+
动作
-
+
组合键
-
+
真
-
+
假
-
+
信息
-
-
+
+
optional argument
可选
-
+
无法打开 %1 。