From ce617ef57b628dddd1456e274ff7d4bb679a10ef Mon Sep 17 00:00:00 2001 From: Onetchou <83351185+Onetchou@users.noreply.github.com> Date: Wed, 31 Jul 2024 13:48:19 +0200 Subject: [PATCH] fix: ts files updated --- share/translations/seamly2d_cs_CZ.ts | 379 ++++++++++---------- share/translations/seamly2d_de_DE.ts | 469 +++++++++++++------------ share/translations/seamly2d_el_GR.ts | 379 ++++++++++---------- share/translations/seamly2d_en_CA.ts | 379 ++++++++++---------- share/translations/seamly2d_en_GB.ts | 311 +++++++++-------- share/translations/seamly2d_en_IN.ts | 379 ++++++++++---------- share/translations/seamly2d_en_US.ts | 379 ++++++++++---------- share/translations/seamly2d_es_ES.ts | 493 +++++++++++++-------------- share/translations/seamly2d_fi_FI.ts | 379 ++++++++++---------- share/translations/seamly2d_fr_FR.ts | 379 ++++++++++---------- share/translations/seamly2d_he_IL.ts | 311 +++++++++-------- share/translations/seamly2d_id_ID.ts | 311 +++++++++-------- share/translations/seamly2d_it_IT.ts | 379 ++++++++++---------- share/translations/seamly2d_nl_NL.ts | 379 ++++++++++---------- share/translations/seamly2d_pt_BR.ts | 379 ++++++++++---------- share/translations/seamly2d_ro_RO.ts | 311 +++++++++-------- share/translations/seamly2d_ru_RU.ts | 379 ++++++++++---------- share/translations/seamly2d_uk_UA.ts | 315 +++++++++-------- share/translations/seamly2d_zh_CN.ts | 311 +++++++++-------- 19 files changed, 3766 insertions(+), 3235 deletions(-) diff --git a/share/translations/seamly2d_cs_CZ.ts b/share/translations/seamly2d_cs_CZ.ts index 3119434cbfb0..3d13a89c10b4 100644 --- a/share/translations/seamly2d_cs_CZ.ts +++ b/share/translations/seamly2d_cs_CZ.ts @@ -173,6 +173,13 @@ + + AddImage + + add image + + + AddPiece @@ -4820,10 +4827,6 @@ Do you want to download it? File may be corrupted... - - File may be corrupted or empty... - - Confirm deletion Potvrdit smazání @@ -4832,16 +4835,6 @@ Do you want to download it? Do you really want to delete? Opravdu chcete smazat? - - Images will not be saved - - - - Please note that the images can not be saved and that they are not affected by the undo and redo functions in the current version of the software. - -You may want to take a screenshot of the image properties dialog before closing the software to be able to recreate identically the image when opening the software again. - - InsertNodesDialog @@ -13121,6 +13114,10 @@ load in SeamlyME as usual. Error creating or updating union pieces + + Image_name + + VPoster @@ -14924,299 +14921,333 @@ load in SeamlyME as usual. placeholder + + M_ + Leave the _ symbol in translation + + + + Variable_ + Leave the _ symbol in translation + + + + Line_ + Leave the _ symbol in translation + Čára_ + + + AngleLine_ + Leave the _ symbol in translation + Úhelčáry_ + + + Arc_ + Leave the _ symbol in translation + Oblouk_ + + + ElArc_ + Leave the _ symbol in translation + + + + Spl_ + Leave the _ symbol in translation + Křivka_ + + + RadiusArc_ + Leave the _ symbol in translation + + + + Radius1ElArc_ + Leave the _ symbol in translation + + + + Radius2ElArc_ + Leave the _ symbol in translation + + + + Angle1Arc_ + Leave the _ symbol in translation + + + + Angle2Arc_ + Leave the _ symbol in translation + + + + Angle1ElArc_ + Leave the _ symbol in translation + + + + Angle2ElArc_ + Leave the _ symbol in translation + + + + Angle1Spl_ + Leave the _ symbol in translation + + + + Angle2Spl_ + Leave the _ symbol in translation + + + + C1LengthSpl_ + Leave the _ symbol in translation + + + + C2LengthSpl_ + Leave the _ symbol in translation + + degTorad Converts degrees to radians -Usage: degTorad(angle θ in degrees) - degTorad +Usage: degTorad(angle θ in degrees) → returns an angle in radians +Example: degTorad(180) = 3.14159 + degTorad radTodeg Converts radians to degrees -Usage: radTodeg(angle θ in radians) - radTodeg +Usage: radTodeg(angle θ in radians) → returns an angle in degrees +Example: radTodeg(3.14159) = 180 + radTodeg sin Sine function working with radians -Usage: sin(angle θ in radians) - sin +Usage: sin(angle θ in radians) → returns a number between -1 and 1 +Example: sin(90) = 0.893997 + sin cos Cosine function working with radians -Usage: cos(angle θ in radians) - cos +Usage: cos(angle θ in radians) → returns a number between -1 and 1 +Example: cos(1) = 0.540302 + cos tan Tangent function working with radians -Usage: tan(angle θ in radians) - tan +Usage: tan(angle θ in radians) +Example: tan(1) = 1.55741 + tan asin Inverse sine function working with radians -Usage: asin(x) - asin +Usage: asin(x between -1 and 1) → returns an angle in radians +Example: asin(-1) = -1.5708 + asin acos Inverse cosine function working with radians -Usage: acos(x) - acos +Usage: acos(x between -1 and 1) → returns an angle in radians +Example: acos(0.1) = 1.47063 + acos atan Inverse tangent function working with radians -Usage: atan(x) - atan +Usage: atan(x) → returns an angle in radians +Example: atan(1) = 0.78538 + atan sinh Hyperbolic sine function -Usage: sinh(angle θ in radians) - sinh +Usage: sinh(θ) +Example: sinh(1) = 1.1752 + sinh cosh Hyperbolic cosine -Usage: cosh(angle θ in radians) - cosh +Usage: cosh(θ) → returns a number greater than or equal to 1 +Example: cosh(0) = 1 + cosh tanh Hyperbolic tangent function -Usage: tanh(angle θ in radians) - tanh +Usage: tanh(θ) → returns a number between -1 and 1 (excluded) +Example: tanh(1) = 0.761594 + tanh asinh Inverse Hyperbolic sine function -Usage: asinh(x) - asinh +Usage: asinh(x) +Example: asinh(90) = 5.19299 + asinh acosh Inverse Hyperbolic cosine function -Usage: acosh(x) - acosh +Usage: acosh(x greater than or equal to 1) +Example: acosh(2) = 1.31696 + acosh atanh Inverse Hyperbolic tangent function -Usage: atanh(x) - atanh +Usage: atanh(x between -1 and 1 (excluded)) +Example: atanh(0,99) = 2.64665 + atanh sinD Sine function working with degrees -Usage: sinD(angle θ in degrees) - sinD +Usage: sinD(angle θ in degrees) → returns a number between -1 and 1 +Example: sinD(90) = 1 + sinD cosD Cosine function working with degrees -Usage: cosD(angle θ in degrees) - cosD +Usage: cosD(angle θ in degrees) → returns a number between -1 and 1 +Example: cosD(180) = -1 + cosD tanD Tangent function working with degrees -Usage: tanD(angle θ in degrees) - tanD +Usage: tanD(angle θ in degrees) +Example: tanD(45) = 1 + tanD asinD Inverse sine function working with degrees -Usage: asinD(x) - asinD +Usage: asinD(x between -1 and 1) → returns an angle in degrees +Example: asinD(1) = 90 + asinD acosD Inverse cosine function working with degrees -Usage: acosD(x) - acosD +Usage: acosD(x between -1 and 1) → returns an angle in degrees +Example: acosD(-1) = 180 + acosD atanD Inverse tangent function working with degrees -Usage: atanD(x) - atanD +Usage: atanD(x) → returns an angle in degrees +Example: atanD(1) = 45 + atanD log2 Logarithm to the base 2 -Usage: log2(x) - log2 +Usage: log2(x greater than 0) +Example: log2(10) = 3.32193 + log2 log10 - Logarithm to the base 10 -Usage: log10(x) - log10 + Logarithm to the base 10 (same as log(x)) +Usage: log10(x greater than 0) +Example: log10(10) = 1 + log10 log Logarithm to the base 10 -Usage: log(x) - log +Usage: log(x greater than 0) +Example: log(10) = 1 + log ln Logarithm to base e (2.71828...) -Usage: ln(x) - ln +Usage: ln(x greater than 0) +Example: ln(10) = 2.30259 + ln exp - E raised to the power of x -Usage: exp(x) where e = 2.718 - exp + e raised to the power of x where e = 2.718 +Usage: exp(x) → returns a positive number +Example: exp(2) = 7.38906 + exp sqrt Square root of a value -Usage: sqrt(x) - sqrt +Usage: sqrt(x greater than or equal to 0) → returns a positive number +Example: sqrt(4) = 2 + sqrt sign Sign function -1 if x<0; 1 if x>0 -Usage: sign(x) - sign +Usage: sign(x) → returns -1, 0 or 1 +Example: sign(-3) = -1 + sign rint Round to nearest integer -Usage: rint(float x) - rint +Usage: rint(x) → returns an integer number +Example: rint(2.3) = 2 + rint abs Absolute value -Usage: abs(x) - abs +Usage: abs(x) → returns a positive number +Example: abs(-5) = 5 + abs min Min of all arguments -Usage: min(arg 1; arg 2; ... arg n) - min +Usage: min(arg 1; arg 2; ... arg n) +Example: min(2;3;4) = 2 + min max Max of all arguments -Usage: max(arg 1; arg 2; ... arg n) - max +Usage: max(arg 1; arg 2; ... arg n) +Example: max(2;3;4) = 4 + max sum Sum of all arguments -Usage: sum(arg 1; arg 2; ... arg n) - sum +Usage: sum(arg 1; arg 2; ... arg n) +Example: sum(2;3;4) = 9 + sum avg Mean value of all arguments -Usage: avg(arg 1; arg 2; ... arg n) - avg +Usage: avg(arg 1; arg 2; ... arg n) +Example: avg(2;3;4) = 3 + avg fmod Returns the floating-point remainder of x/y (rounded towards zero) -Usage: fmod(x; y) - fmod - - - M_ - Leave the _ symbol in translation - - - - Variable_ - Leave the _ symbol in translation - - - - Line_ - Leave the _ symbol in translation - Čára_ - - - AngleLine_ - Leave the _ symbol in translation - Úhelčáry_ - - - Arc_ - Leave the _ symbol in translation - Oblouk_ - - - ElArc_ - Leave the _ symbol in translation - - - - Spl_ - Leave the _ symbol in translation - Křivka_ - - - RadiusArc_ - Leave the _ symbol in translation - - - - Radius1ElArc_ - Leave the _ symbol in translation - - - - Radius2ElArc_ - Leave the _ symbol in translation - - - - Angle1Arc_ - Leave the _ symbol in translation - - - - Angle2Arc_ - Leave the _ symbol in translation - - - - Angle1ElArc_ - Leave the _ symbol in translation - - - - Angle2ElArc_ - Leave the _ symbol in translation - - - - Angle1Spl_ - Leave the _ symbol in translation - - - - Angle2Spl_ - Leave the _ symbol in translation - - - - C1LengthSpl_ - Leave the _ symbol in translation - - - - C2LengthSpl_ - Leave the _ symbol in translation - +Usage: fmod(x; y) +Example: fmod(3.3;2) = 1.3 + fmod diff --git a/share/translations/seamly2d_de_DE.ts b/share/translations/seamly2d_de_DE.ts index 1f1c51657f2c..3b4e4642a636 100644 --- a/share/translations/seamly2d_de_DE.ts +++ b/share/translations/seamly2d_de_DE.ts @@ -173,6 +173,13 @@ Objekt zur Gruppe hinzufügen + + AddImage + + add image + + + AddPiece @@ -4142,14 +4149,6 @@ p, li { white-space: pre-wrap; } FvUpdater - - Unable to get exclusive access to file -%1 -Possibly the file is already being downloaded. - Exklusiver Zugriff auf die Datei kann nicht gewährt werden -%1 -Möglicherweise wird die Datei bereits heruntergeladen. - Feed download failed: %1. Feed download ist fehlgeschlagen: %1. @@ -4186,6 +4185,12 @@ Möchtest Du diesen downloaden? for writing Date %1 kann nicht zum schreiben geöffnet werden + + Unable to get exclusive access to file +%1 +Possibly the file is already being downloaded. + + GroupsWidget @@ -4825,10 +4830,6 @@ for writing File may be corrupted... Die Datei könnte beschädigt sein... - - File may be corrupted or empty... - Die Datei kann beschädigt oder leer sein... - Confirm deletion Löschvorgang bestätigen @@ -4837,18 +4838,6 @@ for writing Do you really want to delete? Möchtest Du wirklich löschen? - - Images will not be saved - Die Bilder werden nicht gespeichert - - - Please note that the images can not be saved and that they are not affected by the undo and redo functions in the current version of the software. - -You may want to take a screenshot of the image properties dialog before closing the software to be able to recreate identically the image when opening the software again. - Bitte beachten Sie, dass die Bilder nicht gespeichert werden können und dass sie von den Rückgängig- und Wiederherstellungsfunktionen in der aktuellen Version der Software nicht betroffen sind. - -Es empfiehlt sich, vor dem Schließen der Software einen Screenshot des Dialogs mit den Bildeigenschaften zu machen, damit Sie das Bild beim erneuten Öffnen der Software identisch wiederherstellen können. - InsertNodesDialog @@ -5178,14 +5167,6 @@ Das Programm wird WIE ES IST, OHNE GEWÄHRLEISTUNG JEGLICHER ART, EINSCHLIESSLIC Descending area Absteigender Bereich - - Margins go beyond printing. - -Apply settings anyway? - Ränder gehen über den Druck hinaus. - -Einstellungen trotzdem anwenden? - Centimeters Zentimeter @@ -5313,6 +5294,12 @@ Einstellungen trotzdem anwenden? Millimeters Millimeter + + Margins go beyond printing. + +Apply settings anyway? + + LineTypeComboBox @@ -10285,20 +10272,6 @@ Drücken Sie die Eingabetaste, um ihn vorübergehend in die Liste aufzunehmen.Decimal separator: Dezimaltrennzeichen: - - Selects what decimal separator char to use. -When checked the separator for the user's locale is used. -When unchecked the period is used. - Legt fest, welches Dezimaltrennzeichen verwendet werden soll. -Wenn das Kontrollkästchen aktiviert ist, wird das Trennzeichen für das Gebietsschema des Benutzers verwendet. -Wenn es nicht markiert ist, wird der Punkt verwendet. - - - When checked the Welcome window will not be displayed. -You can change this setting in the SeamlyMe preferences. - Wenn diese Option aktiviert ist, wird das Willkommensfenster nicht angezeigt. -Sie können diese Einstellung in den SeamlyMe-Einstellungen ändern. - GUI language: Sprache der Benutzeroberfläche: @@ -10327,6 +10300,17 @@ Sie können diese Einstellung in den SeamlyMe-Einstellungen ändern.Inches Zoll + + Selects what decimal separator char to use. +When checked the separator for the user's locale is used. +When unchecked the period is used. + + + + When checked the Welcome window will not be displayed. +You can change this setting in the SeamlyMe preferences. + + SeamlyWelcomeDialog @@ -10350,12 +10334,6 @@ Sie können diese Einstellung in den SeamlyMe-Einstellungen ändern.Decimal separator: Dezimaltrennzeichen: - - When checked the Welcome window will not be displayed. -You can change this setting in the Seamly2D preferences. - Wenn diese Option aktiviert ist, wird das Willkommensfenster nicht angezeigt. -Sie können diese Einstellung in den Seamly2D-Voreinstellungen ändern. - GUI language: Sprache der Benutzeroberfläche: @@ -10388,14 +10366,6 @@ Sie können diese Einstellung in den Seamly2D-Voreinstellungen ändern.Please choose your preferred units, decimal separator, language, and selection sound. (You can change these later.) Bitte wählen Sie Ihre bevorzugten Einheiten, das Dezimaltrennzeichen, die Sprache und den Auswahlton. (Sie können diese Angaben später ändern.) - - Selects what decimal separator char to use. -When checked the separator for the user's locale is used. -When unchecked the period is used. - Legt fest, welches Dezimaltrennzeichen verwendet werden soll. -Wenn das Kontrollkästchen aktiviert ist, wird das Trennzeichen für das Gebietsschema des Benutzers verwendet. -Wenn es nicht markiert ist, wird der Punkt verwendet. - Sound: Ton: @@ -10404,6 +10374,17 @@ Wenn es nicht markiert ist, wird der Punkt verwendet. Sets the node selection click sound. Legt den Klickton für die Knotenauswahl fest. + + Selects what decimal separator char to use. +When checked the separator for the user's locale is used. +When unchecked the period is used. + + + + When checked the Welcome window will not be displayed. +You can change this setting in the Seamly2D preferences. + + SetPieceColor @@ -13159,6 +13140,10 @@ wie gewohnt in SeamlyME laden können. Error creating or updating union pieces Fehler beim Anlegen oder Aktualisieren der Verbindungsschnittteile + + Image_name + + VPoster @@ -14957,304 +14942,338 @@ wie gewohnt in SeamlyME laden können. placeholder wOnFold + + M_ + Leave the _ symbol in translation + M_ + + + Variable_ + Leave the _ symbol in translation + Variab_ + + + Line_ + Leave the _ symbol in translation + Linie_ + + + AngleLine_ + Leave the _ symbol in translation + Winkellinie_ + + + Arc_ + Leave the _ symbol in translation + Bogen_ + + + ElArc_ + Leave the _ symbol in translation + ElBogen_ + + + Spl_ + Leave the _ symbol in translation + Spl_ + + + RadiusArc_ + Leave the _ symbol in translation + RadiusBogen_ + + + Radius1ElArc_ + Leave the _ symbol in translation + Radius1ElBogen_ + + + Radius2ElArc_ + Leave the _ symbol in translation + Radius2ElBogen_ + + + Angle1Arc_ + Leave the _ symbol in translation + Winkel1Bogen_ + + + Angle2Arc_ + Leave the _ symbol in translation + Winkel2Bogen_ + + + Angle1ElArc_ + Leave the _ symbol in translation + Winkel1ElBogen_ + + + Angle2ElArc_ + Leave the _ symbol in translation + Winkel2ElBogen_ + + + Angle1Spl_ + Leave the _ symbol in translation + Winkel1Spl_ + + + Angle2Spl_ + Leave the _ symbol in translation + Winkel2Spl_ + + + Seg_ + Segment. Leave the _ symbol in translation + Seg_ + + + C1LengthSpl_ + Leave the _ symbol in translation + C1LängeSpl_ + + + C2LengthSpl_ + Leave the _ symbol in translation + C2LängeSpl_ + degTorad Converts degrees to radians -Usage: degTorad(angle θ in degrees) - degTorad +Usage: degTorad(angle θ in degrees) → returns an angle in radians +Example: degTorad(180) = 3.14159 + degTorad radTodeg Converts radians to degrees -Usage: radTodeg(angle θ in radians) - radTodeg +Usage: radTodeg(angle θ in radians) → returns an angle in degrees +Example: radTodeg(3.14159) = 180 + radTodeg sin Sine function working with radians -Usage: sin(angle θ in radians) - sin +Usage: sin(angle θ in radians) → returns a number between -1 and 1 +Example: sin(90) = 0.893997 + sin cos Cosine function working with radians -Usage: cos(angle θ in radians) - cos +Usage: cos(angle θ in radians) → returns a number between -1 and 1 +Example: cos(1) = 0.540302 + cos tan Tangent function working with radians -Usage: tan(angle θ in radians) - tan +Usage: tan(angle θ in radians) +Example: tan(1) = 1.55741 + tan asin Inverse sine function working with radians -Usage: asin(x) - asin +Usage: asin(x between -1 and 1) → returns an angle in radians +Example: asin(-1) = -1.5708 + asin acos Inverse cosine function working with radians -Usage: acos(x) - acos +Usage: acos(x between -1 and 1) → returns an angle in radians +Example: acos(0.1) = 1.47063 + acos atan Inverse tangent function working with radians -Usage: atan(x) - atan +Usage: atan(x) → returns an angle in radians +Example: atan(1) = 0.78538 + atan sinh Hyperbolic sine function -Usage: sinh(angle θ in radians) - sinh +Usage: sinh(θ) +Example: sinh(1) = 1.1752 + sinh cosh Hyperbolic cosine -Usage: cosh(angle θ in radians) - cosh +Usage: cosh(θ) → returns a number greater than or equal to 1 +Example: cosh(0) = 1 + cosh tanh Hyperbolic tangent function -Usage: tanh(angle θ in radians) - tanh +Usage: tanh(θ) → returns a number between -1 and 1 (excluded) +Example: tanh(1) = 0.761594 + tanh asinh Inverse Hyperbolic sine function -Usage: asinh(x) - asinh +Usage: asinh(x) +Example: asinh(90) = 5.19299 + asinh acosh Inverse Hyperbolic cosine function -Usage: acosh(x) - acosh +Usage: acosh(x greater than or equal to 1) +Example: acosh(2) = 1.31696 + acosh atanh Inverse Hyperbolic tangent function -Usage: atanh(x) - atanh +Usage: atanh(x between -1 and 1 (excluded)) +Example: atanh(0,99) = 2.64665 + atanh sinD Sine function working with degrees -Usage: sinD(angle θ in degrees) - sinD +Usage: sinD(angle θ in degrees) → returns a number between -1 and 1 +Example: sinD(90) = 1 + sinD cosD Cosine function working with degrees -Usage: cosD(angle θ in degrees) - cosD +Usage: cosD(angle θ in degrees) → returns a number between -1 and 1 +Example: cosD(180) = -1 + cosD tanD Tangent function working with degrees -Usage: tanD(angle θ in degrees) - tanD +Usage: tanD(angle θ in degrees) +Example: tanD(45) = 1 + tanD asinD Inverse sine function working with degrees -Usage: asinD(x) - asinD +Usage: asinD(x between -1 and 1) → returns an angle in degrees +Example: asinD(1) = 90 + asinD acosD Inverse cosine function working with degrees -Usage: acosD(x) - acosD +Usage: acosD(x between -1 and 1) → returns an angle in degrees +Example: acosD(-1) = 180 + acosD atanD Inverse tangent function working with degrees -Usage: atanD(x) - atanD +Usage: atanD(x) → returns an angle in degrees +Example: atanD(1) = 45 + atanD log2 Logarithm to the base 2 -Usage: log2(x) - log2 +Usage: log2(x greater than 0) +Example: log2(10) = 3.32193 + log2 log10 - Logarithm to the base 10 -Usage: log10(x) - log10 + Logarithm to the base 10 (same as log(x)) +Usage: log10(x greater than 0) +Example: log10(10) = 1 + log10 log Logarithm to the base 10 -Usage: log(x) - log +Usage: log(x greater than 0) +Example: log(10) = 1 + log ln Logarithm to base e (2.71828...) -Usage: ln(x) - ln +Usage: ln(x greater than 0) +Example: ln(10) = 2.30259 + ln exp - E raised to the power of x -Usage: exp(x) where e = 2.718 - exp + e raised to the power of x where e = 2.718 +Usage: exp(x) → returns a positive number +Example: exp(2) = 7.38906 + exp sqrt Square root of a value -Usage: sqrt(x) - sqrt +Usage: sqrt(x greater than or equal to 0) → returns a positive number +Example: sqrt(4) = 2 + sqrt sign Sign function -1 if x<0; 1 if x>0 -Usage: sign(x) - sign +Usage: sign(x) → returns -1, 0 or 1 +Example: sign(-3) = -1 + sign rint Round to nearest integer -Usage: rint(float x) - rint +Usage: rint(x) → returns an integer number +Example: rint(2.3) = 2 + rint abs Absolute value -Usage: abs(x) - abs +Usage: abs(x) → returns a positive number +Example: abs(-5) = 5 + abs min Min of all arguments -Usage: min(arg 1; arg 2; ... arg n) - min +Usage: min(arg 1; arg 2; ... arg n) +Example: min(2;3;4) = 2 + min max Max of all arguments -Usage: max(arg 1; arg 2; ... arg n) - max +Usage: max(arg 1; arg 2; ... arg n) +Example: max(2;3;4) = 4 + max sum Sum of all arguments -Usage: sum(arg 1; arg 2; ... arg n) - sum +Usage: sum(arg 1; arg 2; ... arg n) +Example: sum(2;3;4) = 9 + sum avg Mean value of all arguments -Usage: avg(arg 1; arg 2; ... arg n) - avg +Usage: avg(arg 1; arg 2; ... arg n) +Example: avg(2;3;4) = 3 + avg fmod Returns the floating-point remainder of x/y (rounded towards zero) -Usage: fmod(x; y) - fmod - - - M_ - Leave the _ symbol in translation - M_ - - - Variable_ - Leave the _ symbol in translation - Variab_ - - - Line_ - Leave the _ symbol in translation - Linie_ - - - AngleLine_ - Leave the _ symbol in translation - Winkellinie_ - - - Arc_ - Leave the _ symbol in translation - Bogen_ - - - ElArc_ - Leave the _ symbol in translation - ElBogen_ - - - Spl_ - Leave the _ symbol in translation - Spl_ - - - RadiusArc_ - Leave the _ symbol in translation - RadiusBogen_ - - - Radius1ElArc_ - Leave the _ symbol in translation - Radius1ElBogen_ - - - Radius2ElArc_ - Leave the _ symbol in translation - Radius2ElBogen_ - - - Angle1Arc_ - Leave the _ symbol in translation - Winkel1Bogen_ - - - Angle2Arc_ - Leave the _ symbol in translation - Winkel2Bogen_ - - - Angle1ElArc_ - Leave the _ symbol in translation - Winkel1ElBogen_ - - - Angle2ElArc_ - Leave the _ symbol in translation - Winkel2ElBogen_ - - - Angle1Spl_ - Leave the _ symbol in translation - Winkel1Spl_ - - - Angle2Spl_ - Leave the _ symbol in translation - Winkel2Spl_ - - - Seg_ - Segment. Leave the _ symbol in translation - Seg_ - - - C1LengthSpl_ - Leave the _ symbol in translation - C1LängeSpl_ - - - C2LengthSpl_ - Leave the _ symbol in translation - C2LängeSpl_ +Usage: fmod(x; y) +Example: fmod(3.3;2) = 1.3 + fmod diff --git a/share/translations/seamly2d_el_GR.ts b/share/translations/seamly2d_el_GR.ts index 17b24ffeb947..385d96f144f7 100644 --- a/share/translations/seamly2d_el_GR.ts +++ b/share/translations/seamly2d_el_GR.ts @@ -173,6 +173,13 @@ + + AddImage + + add image + + + AddPiece @@ -4820,10 +4827,6 @@ Do you want to download it? File may be corrupted... - - File may be corrupted or empty... - - Confirm deletion Επικύρωση διαγραφής @@ -4832,16 +4835,6 @@ Do you want to download it? Do you really want to delete? Θέλετε σίγουρα να κάνετε διαγραφή; - - Images will not be saved - - - - Please note that the images can not be saved and that they are not affected by the undo and redo functions in the current version of the software. - -You may want to take a screenshot of the image properties dialog before closing the software to be able to recreate identically the image when opening the software again. - - InsertNodesDialog @@ -13120,6 +13113,10 @@ load in SeamlyME as usual. Error creating or updating union pieces + + Image_name + + VPoster @@ -14923,299 +14920,333 @@ load in SeamlyME as usual. placeholder + + M_ + Leave the _ symbol in translation + + + + Variable_ + Leave the _ symbol in translation + + + + Line_ + Leave the _ symbol in translation + Γραμμή_ + + + AngleLine_ + Leave the _ symbol in translation + + + + Arc_ + Leave the _ symbol in translation + Τόξο_ + + + ElArc_ + Leave the _ symbol in translation + + + + Spl_ + Leave the _ symbol in translation + + + + RadiusArc_ + Leave the _ symbol in translation + + + + Radius1ElArc_ + Leave the _ symbol in translation + + + + Radius2ElArc_ + Leave the _ symbol in translation + + + + Angle1Arc_ + Leave the _ symbol in translation + + + + Angle2Arc_ + Leave the _ symbol in translation + + + + Angle1ElArc_ + Leave the _ symbol in translation + + + + Angle2ElArc_ + Leave the _ symbol in translation + + + + Angle1Spl_ + Leave the _ symbol in translation + + + + Angle2Spl_ + Leave the _ symbol in translation + + + + C1LengthSpl_ + Leave the _ symbol in translation + + + + C2LengthSpl_ + Leave the _ symbol in translation + + degTorad Converts degrees to radians -Usage: degTorad(angle θ in degrees) - degTorad +Usage: degTorad(angle θ in degrees) → returns an angle in radians +Example: degTorad(180) = 3.14159 + degTorad radTodeg Converts radians to degrees -Usage: radTodeg(angle θ in radians) - radTodeg +Usage: radTodeg(angle θ in radians) → returns an angle in degrees +Example: radTodeg(3.14159) = 180 + radTodeg sin Sine function working with radians -Usage: sin(angle θ in radians) - sin +Usage: sin(angle θ in radians) → returns a number between -1 and 1 +Example: sin(90) = 0.893997 + sin cos Cosine function working with radians -Usage: cos(angle θ in radians) - cos +Usage: cos(angle θ in radians) → returns a number between -1 and 1 +Example: cos(1) = 0.540302 + cos tan Tangent function working with radians -Usage: tan(angle θ in radians) - tan +Usage: tan(angle θ in radians) +Example: tan(1) = 1.55741 + tan asin Inverse sine function working with radians -Usage: asin(x) - asin +Usage: asin(x between -1 and 1) → returns an angle in radians +Example: asin(-1) = -1.5708 + asin acos Inverse cosine function working with radians -Usage: acos(x) - acos +Usage: acos(x between -1 and 1) → returns an angle in radians +Example: acos(0.1) = 1.47063 + acos atan Inverse tangent function working with radians -Usage: atan(x) - atan +Usage: atan(x) → returns an angle in radians +Example: atan(1) = 0.78538 + atan sinh Hyperbolic sine function -Usage: sinh(angle θ in radians) - sinh +Usage: sinh(θ) +Example: sinh(1) = 1.1752 + sinh cosh Hyperbolic cosine -Usage: cosh(angle θ in radians) - cosh +Usage: cosh(θ) → returns a number greater than or equal to 1 +Example: cosh(0) = 1 + cosh tanh Hyperbolic tangent function -Usage: tanh(angle θ in radians) - tanh +Usage: tanh(θ) → returns a number between -1 and 1 (excluded) +Example: tanh(1) = 0.761594 + tanh asinh Inverse Hyperbolic sine function -Usage: asinh(x) - asinh +Usage: asinh(x) +Example: asinh(90) = 5.19299 + asinh acosh Inverse Hyperbolic cosine function -Usage: acosh(x) - acosh +Usage: acosh(x greater than or equal to 1) +Example: acosh(2) = 1.31696 + acosh atanh Inverse Hyperbolic tangent function -Usage: atanh(x) - atanh +Usage: atanh(x between -1 and 1 (excluded)) +Example: atanh(0,99) = 2.64665 + atanh sinD Sine function working with degrees -Usage: sinD(angle θ in degrees) - sinD +Usage: sinD(angle θ in degrees) → returns a number between -1 and 1 +Example: sinD(90) = 1 + sinD cosD Cosine function working with degrees -Usage: cosD(angle θ in degrees) - cosD +Usage: cosD(angle θ in degrees) → returns a number between -1 and 1 +Example: cosD(180) = -1 + cosD tanD Tangent function working with degrees -Usage: tanD(angle θ in degrees) - tanD +Usage: tanD(angle θ in degrees) +Example: tanD(45) = 1 + tanD asinD Inverse sine function working with degrees -Usage: asinD(x) - asinD +Usage: asinD(x between -1 and 1) → returns an angle in degrees +Example: asinD(1) = 90 + asinD acosD Inverse cosine function working with degrees -Usage: acosD(x) - acosD +Usage: acosD(x between -1 and 1) → returns an angle in degrees +Example: acosD(-1) = 180 + acosD atanD Inverse tangent function working with degrees -Usage: atanD(x) - atanD +Usage: atanD(x) → returns an angle in degrees +Example: atanD(1) = 45 + atanD log2 Logarithm to the base 2 -Usage: log2(x) - log2 +Usage: log2(x greater than 0) +Example: log2(10) = 3.32193 + log2 log10 - Logarithm to the base 10 -Usage: log10(x) - log10 + Logarithm to the base 10 (same as log(x)) +Usage: log10(x greater than 0) +Example: log10(10) = 1 + log10 log Logarithm to the base 10 -Usage: log(x) - log +Usage: log(x greater than 0) +Example: log(10) = 1 + log ln Logarithm to base e (2.71828...) -Usage: ln(x) - ln +Usage: ln(x greater than 0) +Example: ln(10) = 2.30259 + ln exp - E raised to the power of x -Usage: exp(x) where e = 2.718 - exp + e raised to the power of x where e = 2.718 +Usage: exp(x) → returns a positive number +Example: exp(2) = 7.38906 + exp sqrt Square root of a value -Usage: sqrt(x) - sqrt +Usage: sqrt(x greater than or equal to 0) → returns a positive number +Example: sqrt(4) = 2 + sqrt sign Sign function -1 if x<0; 1 if x>0 -Usage: sign(x) - sign +Usage: sign(x) → returns -1, 0 or 1 +Example: sign(-3) = -1 + sign rint Round to nearest integer -Usage: rint(float x) - rint +Usage: rint(x) → returns an integer number +Example: rint(2.3) = 2 + rint abs Absolute value -Usage: abs(x) - abs +Usage: abs(x) → returns a positive number +Example: abs(-5) = 5 + abs min Min of all arguments -Usage: min(arg 1; arg 2; ... arg n) - min +Usage: min(arg 1; arg 2; ... arg n) +Example: min(2;3;4) = 2 + min max Max of all arguments -Usage: max(arg 1; arg 2; ... arg n) - max +Usage: max(arg 1; arg 2; ... arg n) +Example: max(2;3;4) = 4 + max sum Sum of all arguments -Usage: sum(arg 1; arg 2; ... arg n) - sum +Usage: sum(arg 1; arg 2; ... arg n) +Example: sum(2;3;4) = 9 + sum avg Mean value of all arguments -Usage: avg(arg 1; arg 2; ... arg n) - avg +Usage: avg(arg 1; arg 2; ... arg n) +Example: avg(2;3;4) = 3 + avg fmod Returns the floating-point remainder of x/y (rounded towards zero) -Usage: fmod(x; y) - fmod - - - M_ - Leave the _ symbol in translation - - - - Variable_ - Leave the _ symbol in translation - - - - Line_ - Leave the _ symbol in translation - Γραμμή_ - - - AngleLine_ - Leave the _ symbol in translation - - - - Arc_ - Leave the _ symbol in translation - Τόξο_ - - - ElArc_ - Leave the _ symbol in translation - - - - Spl_ - Leave the _ symbol in translation - - - - RadiusArc_ - Leave the _ symbol in translation - - - - Radius1ElArc_ - Leave the _ symbol in translation - - - - Radius2ElArc_ - Leave the _ symbol in translation - - - - Angle1Arc_ - Leave the _ symbol in translation - - - - Angle2Arc_ - Leave the _ symbol in translation - - - - Angle1ElArc_ - Leave the _ symbol in translation - - - - Angle2ElArc_ - Leave the _ symbol in translation - - - - Angle1Spl_ - Leave the _ symbol in translation - - - - Angle2Spl_ - Leave the _ symbol in translation - - - - C1LengthSpl_ - Leave the _ symbol in translation - - - - C2LengthSpl_ - Leave the _ symbol in translation - +Usage: fmod(x; y) +Example: fmod(3.3;2) = 1.3 + fmod diff --git a/share/translations/seamly2d_en_CA.ts b/share/translations/seamly2d_en_CA.ts index a5d1c09ba753..490397b000c9 100644 --- a/share/translations/seamly2d_en_CA.ts +++ b/share/translations/seamly2d_en_CA.ts @@ -173,6 +173,13 @@ + + AddImage + + add image + + + AddPiece @@ -4820,10 +4827,6 @@ Do you want to download it? File may be corrupted... - - File may be corrupted or empty... - - Confirm deletion Confirm deletion @@ -4832,16 +4835,6 @@ Do you want to download it? Do you really want to delete? Do you really want to delete? - - Images will not be saved - - - - Please note that the images can not be saved and that they are not affected by the undo and redo functions in the current version of the software. - -You may want to take a screenshot of the image properties dialog before closing the software to be able to recreate identically the image when opening the software again. - - InsertNodesDialog @@ -13125,6 +13118,10 @@ load in SeamlyME as usual. Error creating or updating union pieces + + Image_name + + VPoster @@ -14928,299 +14925,333 @@ load in SeamlyME as usual. placeholder + + M_ + Leave the _ symbol in translation + M_ + + + Variable_ + Leave the _ symbol in translation + + + + Line_ + Leave the _ symbol in translation + Line_ + + + AngleLine_ + Leave the _ symbol in translation + AngleLine_ + + + Arc_ + Leave the _ symbol in translation + Arc_ + + + ElArc_ + Leave the _ symbol in translation + + + + Spl_ + Leave the _ symbol in translation + Spl_ + + + RadiusArc_ + Leave the _ symbol in translation + RadiusArc_ + + + Radius1ElArc_ + Leave the _ symbol in translation + + + + Radius2ElArc_ + Leave the _ symbol in translation + + + + Angle1Arc_ + Leave the _ symbol in translation + Angle1Arc_ + + + Angle2Arc_ + Leave the _ symbol in translation + Angle2Arc_ + + + Angle1ElArc_ + Leave the _ symbol in translation + + + + Angle2ElArc_ + Leave the _ symbol in translation + + + + Angle1Spl_ + Leave the _ symbol in translation + Angle1Spl_ + + + Angle2Spl_ + Leave the _ symbol in translation + Angle2Spl_ + + + C1LengthSpl_ + Leave the _ symbol in translation + C1LengthSpl_ + + + C2LengthSpl_ + Leave the _ symbol in translation + C2LengthSpl_ + degTorad Converts degrees to radians -Usage: degTorad(angle θ in degrees) - degTorad +Usage: degTorad(angle θ in degrees) → returns an angle in radians +Example: degTorad(180) = 3.14159 + degTorad radTodeg Converts radians to degrees -Usage: radTodeg(angle θ in radians) - radTodeg +Usage: radTodeg(angle θ in radians) → returns an angle in degrees +Example: radTodeg(3.14159) = 180 + radTodeg sin Sine function working with radians -Usage: sin(angle θ in radians) - sin +Usage: sin(angle θ in radians) → returns a number between -1 and 1 +Example: sin(90) = 0.893997 + sin cos Cosine function working with radians -Usage: cos(angle θ in radians) - cos +Usage: cos(angle θ in radians) → returns a number between -1 and 1 +Example: cos(1) = 0.540302 + cos tan Tangent function working with radians -Usage: tan(angle θ in radians) - tan +Usage: tan(angle θ in radians) +Example: tan(1) = 1.55741 + tan asin Inverse sine function working with radians -Usage: asin(x) - asin +Usage: asin(x between -1 and 1) → returns an angle in radians +Example: asin(-1) = -1.5708 + asin acos Inverse cosine function working with radians -Usage: acos(x) - acos +Usage: acos(x between -1 and 1) → returns an angle in radians +Example: acos(0.1) = 1.47063 + acos atan Inverse tangent function working with radians -Usage: atan(x) - atan +Usage: atan(x) → returns an angle in radians +Example: atan(1) = 0.78538 + atan sinh Hyperbolic sine function -Usage: sinh(angle θ in radians) - sinh +Usage: sinh(θ) +Example: sinh(1) = 1.1752 + sinh cosh Hyperbolic cosine -Usage: cosh(angle θ in radians) - cosh +Usage: cosh(θ) → returns a number greater than or equal to 1 +Example: cosh(0) = 1 + cosh tanh Hyperbolic tangent function -Usage: tanh(angle θ in radians) - tanh +Usage: tanh(θ) → returns a number between -1 and 1 (excluded) +Example: tanh(1) = 0.761594 + tanh asinh Inverse Hyperbolic sine function -Usage: asinh(x) - asinh +Usage: asinh(x) +Example: asinh(90) = 5.19299 + asinh acosh Inverse Hyperbolic cosine function -Usage: acosh(x) - acosh +Usage: acosh(x greater than or equal to 1) +Example: acosh(2) = 1.31696 + acosh atanh Inverse Hyperbolic tangent function -Usage: atanh(x) - atanh +Usage: atanh(x between -1 and 1 (excluded)) +Example: atanh(0,99) = 2.64665 + atanh sinD Sine function working with degrees -Usage: sinD(angle θ in degrees) - sinD +Usage: sinD(angle θ in degrees) → returns a number between -1 and 1 +Example: sinD(90) = 1 + sinD cosD Cosine function working with degrees -Usage: cosD(angle θ in degrees) - cosD +Usage: cosD(angle θ in degrees) → returns a number between -1 and 1 +Example: cosD(180) = -1 + cosD tanD Tangent function working with degrees -Usage: tanD(angle θ in degrees) - tanD +Usage: tanD(angle θ in degrees) +Example: tanD(45) = 1 + tanD asinD Inverse sine function working with degrees -Usage: asinD(x) - asinD +Usage: asinD(x between -1 and 1) → returns an angle in degrees +Example: asinD(1) = 90 + asinD acosD Inverse cosine function working with degrees -Usage: acosD(x) - acosD +Usage: acosD(x between -1 and 1) → returns an angle in degrees +Example: acosD(-1) = 180 + acosD atanD Inverse tangent function working with degrees -Usage: atanD(x) - atanD +Usage: atanD(x) → returns an angle in degrees +Example: atanD(1) = 45 + atanD log2 Logarithm to the base 2 -Usage: log2(x) - log2 +Usage: log2(x greater than 0) +Example: log2(10) = 3.32193 + log2 log10 - Logarithm to the base 10 -Usage: log10(x) - log10 + Logarithm to the base 10 (same as log(x)) +Usage: log10(x greater than 0) +Example: log10(10) = 1 + log10 log Logarithm to the base 10 -Usage: log(x) - log +Usage: log(x greater than 0) +Example: log(10) = 1 + log ln Logarithm to base e (2.71828...) -Usage: ln(x) - ln +Usage: ln(x greater than 0) +Example: ln(10) = 2.30259 + ln exp - E raised to the power of x -Usage: exp(x) where e = 2.718 - exp + e raised to the power of x where e = 2.718 +Usage: exp(x) → returns a positive number +Example: exp(2) = 7.38906 + exp sqrt Square root of a value -Usage: sqrt(x) - sqrt +Usage: sqrt(x greater than or equal to 0) → returns a positive number +Example: sqrt(4) = 2 + sqrt sign Sign function -1 if x<0; 1 if x>0 -Usage: sign(x) - sign +Usage: sign(x) → returns -1, 0 or 1 +Example: sign(-3) = -1 + sign rint Round to nearest integer -Usage: rint(float x) - rint +Usage: rint(x) → returns an integer number +Example: rint(2.3) = 2 + rint abs Absolute value -Usage: abs(x) - abs +Usage: abs(x) → returns a positive number +Example: abs(-5) = 5 + abs min Min of all arguments -Usage: min(arg 1; arg 2; ... arg n) - min +Usage: min(arg 1; arg 2; ... arg n) +Example: min(2;3;4) = 2 + min max Max of all arguments -Usage: max(arg 1; arg 2; ... arg n) - max +Usage: max(arg 1; arg 2; ... arg n) +Example: max(2;3;4) = 4 + max sum Sum of all arguments -Usage: sum(arg 1; arg 2; ... arg n) - sum +Usage: sum(arg 1; arg 2; ... arg n) +Example: sum(2;3;4) = 9 + sum avg Mean value of all arguments -Usage: avg(arg 1; arg 2; ... arg n) - avg +Usage: avg(arg 1; arg 2; ... arg n) +Example: avg(2;3;4) = 3 + avg fmod Returns the floating-point remainder of x/y (rounded towards zero) -Usage: fmod(x; y) - fmod - - - M_ - Leave the _ symbol in translation - M_ - - - Variable_ - Leave the _ symbol in translation - - - - Line_ - Leave the _ symbol in translation - Line_ - - - AngleLine_ - Leave the _ symbol in translation - AngleLine_ - - - Arc_ - Leave the _ symbol in translation - Arc_ - - - ElArc_ - Leave the _ symbol in translation - - - - Spl_ - Leave the _ symbol in translation - Spl_ - - - RadiusArc_ - Leave the _ symbol in translation - RadiusArc_ - - - Radius1ElArc_ - Leave the _ symbol in translation - - - - Radius2ElArc_ - Leave the _ symbol in translation - - - - Angle1Arc_ - Leave the _ symbol in translation - Angle1Arc_ - - - Angle2Arc_ - Leave the _ symbol in translation - Angle2Arc_ - - - Angle1ElArc_ - Leave the _ symbol in translation - - - - Angle2ElArc_ - Leave the _ symbol in translation - - - - Angle1Spl_ - Leave the _ symbol in translation - Angle1Spl_ - - - Angle2Spl_ - Leave the _ symbol in translation - Angle2Spl_ - - - C1LengthSpl_ - Leave the _ symbol in translation - C1LengthSpl_ - - - C2LengthSpl_ - Leave the _ symbol in translation - C2LengthSpl_ +Usage: fmod(x; y) +Example: fmod(3.3;2) = 1.3 + fmod diff --git a/share/translations/seamly2d_en_GB.ts b/share/translations/seamly2d_en_GB.ts index 58476d74c66c..2b9c8ebdf169 100644 --- a/share/translations/seamly2d_en_GB.ts +++ b/share/translations/seamly2d_en_GB.ts @@ -173,6 +173,13 @@ + + AddImage + + add image + + + AddPiece @@ -4820,10 +4827,6 @@ Do you want to download it? File may be corrupted... - - File may be corrupted or empty... - - Confirm deletion @@ -4832,16 +4835,6 @@ Do you want to download it? Do you really want to delete? - - Images will not be saved - - - - Please note that the images can not be saved and that they are not affected by the undo and redo functions in the current version of the software. - -You may want to take a screenshot of the image properties dialog before closing the software to be able to recreate identically the image when opening the software again. - - InsertNodesDialog @@ -13125,6 +13118,10 @@ load in SeamlyME as usual. Error creating or updating union pieces + + Image_name + + VPoster @@ -14928,300 +14925,334 @@ load in SeamlyME as usual. placeholder + + M_ + Leave the _ symbol in translation + + + + Variable_ + Leave the _ symbol in translation + + + + Line_ + Leave the _ symbol in translation + Line_ + + + AngleLine_ + Leave the _ symbol in translation + + + + Arc_ + Leave the _ symbol in translation + Arc_ + + + ElArc_ + Leave the _ symbol in translation + + + + Spl_ + Leave the _ symbol in translation + Spl_ + + + RadiusArc_ + Leave the _ symbol in translation + + + + Radius1ElArc_ + Leave the _ symbol in translation + + + + Radius2ElArc_ + Leave the _ symbol in translation + + + + Angle1Arc_ + Leave the _ symbol in translation + + + + Angle2Arc_ + Leave the _ symbol in translation + + + + Angle1ElArc_ + Leave the _ symbol in translation + + + + Angle2ElArc_ + Leave the _ symbol in translation + + + + Angle1Spl_ + Leave the _ symbol in translation + + + + Angle2Spl_ + Leave the _ symbol in translation + + + + C1LengthSpl_ + Leave the _ symbol in translation + + + + C2LengthSpl_ + Leave the _ symbol in translation + + degTorad Converts degrees to radians -Usage: degTorad(angle θ in degrees) +Usage: degTorad(angle θ in degrees) → returns an angle in radians +Example: degTorad(180) = 3.14159 degTorad radTodeg Converts radians to degrees -Usage: radTodeg(angle θ in radians) +Usage: radTodeg(angle θ in radians) → returns an angle in degrees +Example: radTodeg(3.14159) = 180 radTodeg sin Sine function working with radians -Usage: sin(angle θ in radians) +Usage: sin(angle θ in radians) → returns a number between -1 and 1 +Example: sin(90) = 0.893997 sin cos Cosine function working with radians -Usage: cos(angle θ in radians) +Usage: cos(angle θ in radians) → returns a number between -1 and 1 +Example: cos(1) = 0.540302 cos tan Tangent function working with radians -Usage: tan(angle θ in radians) +Usage: tan(angle θ in radians) +Example: tan(1) = 1.55741 tan asin Inverse sine function working with radians -Usage: asin(x) +Usage: asin(x between -1 and 1) → returns an angle in radians +Example: asin(-1) = -1.5708 asin acos Inverse cosine function working with radians -Usage: acos(x) +Usage: acos(x between -1 and 1) → returns an angle in radians +Example: acos(0.1) = 1.47063 acos atan Inverse tangent function working with radians -Usage: atan(x) +Usage: atan(x) → returns an angle in radians +Example: atan(1) = 0.78538 atan sinh Hyperbolic sine function -Usage: sinh(angle θ in radians) +Usage: sinh(θ) +Example: sinh(1) = 1.1752 sinh cosh Hyperbolic cosine -Usage: cosh(angle θ in radians) +Usage: cosh(θ) → returns a number greater than or equal to 1 +Example: cosh(0) = 1 cosh tanh Hyperbolic tangent function -Usage: tanh(angle θ in radians) +Usage: tanh(θ) → returns a number between -1 and 1 (excluded) +Example: tanh(1) = 0.761594 tanh asinh Inverse Hyperbolic sine function -Usage: asinh(x) +Usage: asinh(x) +Example: asinh(90) = 5.19299 asinh acosh Inverse Hyperbolic cosine function -Usage: acosh(x) +Usage: acosh(x greater than or equal to 1) +Example: acosh(2) = 1.31696 acosh atanh Inverse Hyperbolic tangent function -Usage: atanh(x) +Usage: atanh(x between -1 and 1 (excluded)) +Example: atanh(0,99) = 2.64665 atanh sinD Sine function working with degrees -Usage: sinD(angle θ in degrees) +Usage: sinD(angle θ in degrees) → returns a number between -1 and 1 +Example: sinD(90) = 1 sinD cosD Cosine function working with degrees -Usage: cosD(angle θ in degrees) +Usage: cosD(angle θ in degrees) → returns a number between -1 and 1 +Example: cosD(180) = -1 cosD tanD Tangent function working with degrees -Usage: tanD(angle θ in degrees) +Usage: tanD(angle θ in degrees) +Example: tanD(45) = 1 tanD asinD Inverse sine function working with degrees -Usage: asinD(x) +Usage: asinD(x between -1 and 1) → returns an angle in degrees +Example: asinD(1) = 90 asinD acosD Inverse cosine function working with degrees -Usage: acosD(x) +Usage: acosD(x between -1 and 1) → returns an angle in degrees +Example: acosD(-1) = 180 acosD atanD Inverse tangent function working with degrees -Usage: atanD(x) +Usage: atanD(x) → returns an angle in degrees +Example: atanD(1) = 45 atanD log2 Logarithm to the base 2 -Usage: log2(x) +Usage: log2(x greater than 0) +Example: log2(10) = 3.32193 log2 log10 - Logarithm to the base 10 -Usage: log10(x) + Logarithm to the base 10 (same as log(x)) +Usage: log10(x greater than 0) +Example: log10(10) = 1 log10 log Logarithm to the base 10 -Usage: log(x) +Usage: log(x greater than 0) +Example: log(10) = 1 log ln Logarithm to base e (2.71828...) -Usage: ln(x) +Usage: ln(x greater than 0) +Example: ln(10) = 2.30259 ln exp - E raised to the power of x -Usage: exp(x) where e = 2.718 + e raised to the power of x where e = 2.718 +Usage: exp(x) → returns a positive number +Example: exp(2) = 7.38906 exp sqrt Square root of a value -Usage: sqrt(x) +Usage: sqrt(x greater than or equal to 0) → returns a positive number +Example: sqrt(4) = 2 sqrt sign Sign function -1 if x<0; 1 if x>0 -Usage: sign(x) +Usage: sign(x) → returns -1, 0 or 1 +Example: sign(-3) = -1 sign rint Round to nearest integer -Usage: rint(float x) +Usage: rint(x) → returns an integer number +Example: rint(2.3) = 2 rint abs Absolute value -Usage: abs(x) +Usage: abs(x) → returns a positive number +Example: abs(-5) = 5 abs min Min of all arguments -Usage: min(arg 1; arg 2; ... arg n) +Usage: min(arg 1; arg 2; ... arg n) +Example: min(2;3;4) = 2 min max Max of all arguments -Usage: max(arg 1; arg 2; ... arg n) +Usage: max(arg 1; arg 2; ... arg n) +Example: max(2;3;4) = 4 max sum Sum of all arguments -Usage: sum(arg 1; arg 2; ... arg n) +Usage: sum(arg 1; arg 2; ... arg n) +Example: sum(2;3;4) = 9 sum avg Mean value of all arguments -Usage: avg(arg 1; arg 2; ... arg n) +Usage: avg(arg 1; arg 2; ... arg n) +Example: avg(2;3;4) = 3 avg fmod Returns the floating-point remainder of x/y (rounded towards zero) -Usage: fmod(x; y) +Usage: fmod(x; y) +Example: fmod(3.3;2) = 1.3 fmod - - M_ - Leave the _ symbol in translation - - - - Variable_ - Leave the _ symbol in translation - - - - Line_ - Leave the _ symbol in translation - Line_ - - - AngleLine_ - Leave the _ symbol in translation - - - - Arc_ - Leave the _ symbol in translation - Arc_ - - - ElArc_ - Leave the _ symbol in translation - - - - Spl_ - Leave the _ symbol in translation - Spl_ - - - RadiusArc_ - Leave the _ symbol in translation - - - - Radius1ElArc_ - Leave the _ symbol in translation - - - - Radius2ElArc_ - Leave the _ symbol in translation - - - - Angle1Arc_ - Leave the _ symbol in translation - - - - Angle2Arc_ - Leave the _ symbol in translation - - - - Angle1ElArc_ - Leave the _ symbol in translation - - - - Angle2ElArc_ - Leave the _ symbol in translation - - - - Angle1Spl_ - Leave the _ symbol in translation - - - - Angle2Spl_ - Leave the _ symbol in translation - - - - C1LengthSpl_ - Leave the _ symbol in translation - - - - C2LengthSpl_ - Leave the _ symbol in translation - - VisToolCubicBezierPath diff --git a/share/translations/seamly2d_en_IN.ts b/share/translations/seamly2d_en_IN.ts index 325cde723dca..32350ea3563a 100644 --- a/share/translations/seamly2d_en_IN.ts +++ b/share/translations/seamly2d_en_IN.ts @@ -173,6 +173,13 @@ + + AddImage + + add image + + + AddPiece @@ -4820,10 +4827,6 @@ Do you want to download it? File may be corrupted... - - File may be corrupted or empty... - - Confirm deletion Confirm deletion @@ -4832,16 +4835,6 @@ Do you want to download it? Do you really want to delete? Do you really want to delete? - - Images will not be saved - - - - Please note that the images can not be saved and that they are not affected by the undo and redo functions in the current version of the software. - -You may want to take a screenshot of the image properties dialog before closing the software to be able to recreate identically the image when opening the software again. - - InsertNodesDialog @@ -13125,6 +13118,10 @@ load in SeamlyME as usual. Error creating or updating union pieces + + Image_name + + VPoster @@ -14928,299 +14925,333 @@ load in SeamlyME as usual. placeholder + + M_ + Leave the _ symbol in translation + M_ + + + Variable_ + Leave the _ symbol in translation + + + + Line_ + Leave the _ symbol in translation + Line_ + + + AngleLine_ + Leave the _ symbol in translation + AngleLine_ + + + Arc_ + Leave the _ symbol in translation + Arc_ + + + ElArc_ + Leave the _ symbol in translation + + + + Spl_ + Leave the _ symbol in translation + Spl_ + + + RadiusArc_ + Leave the _ symbol in translation + RadiusArc_ + + + Radius1ElArc_ + Leave the _ symbol in translation + + + + Radius2ElArc_ + Leave the _ symbol in translation + + + + Angle1Arc_ + Leave the _ symbol in translation + Angle1Arc_ + + + Angle2Arc_ + Leave the _ symbol in translation + Angle2Arc_ + + + Angle1ElArc_ + Leave the _ symbol in translation + + + + Angle2ElArc_ + Leave the _ symbol in translation + + + + Angle1Spl_ + Leave the _ symbol in translation + Angle1Spl_ + + + Angle2Spl_ + Leave the _ symbol in translation + Angle2Spl_ + + + C1LengthSpl_ + Leave the _ symbol in translation + C1LengthSpl_ + + + C2LengthSpl_ + Leave the _ symbol in translation + C2LengthSpl_ + degTorad Converts degrees to radians -Usage: degTorad(angle θ in degrees) - degTorad +Usage: degTorad(angle θ in degrees) → returns an angle in radians +Example: degTorad(180) = 3.14159 + degTorad radTodeg Converts radians to degrees -Usage: radTodeg(angle θ in radians) - radTodeg +Usage: radTodeg(angle θ in radians) → returns an angle in degrees +Example: radTodeg(3.14159) = 180 + radTodeg sin Sine function working with radians -Usage: sin(angle θ in radians) - sin +Usage: sin(angle θ in radians) → returns a number between -1 and 1 +Example: sin(90) = 0.893997 + sin cos Cosine function working with radians -Usage: cos(angle θ in radians) - cos +Usage: cos(angle θ in radians) → returns a number between -1 and 1 +Example: cos(1) = 0.540302 + cos tan Tangent function working with radians -Usage: tan(angle θ in radians) - tan +Usage: tan(angle θ in radians) +Example: tan(1) = 1.55741 + tan asin Inverse sine function working with radians -Usage: asin(x) - asin +Usage: asin(x between -1 and 1) → returns an angle in radians +Example: asin(-1) = -1.5708 + asin acos Inverse cosine function working with radians -Usage: acos(x) - acos +Usage: acos(x between -1 and 1) → returns an angle in radians +Example: acos(0.1) = 1.47063 + acos atan Inverse tangent function working with radians -Usage: atan(x) - atan +Usage: atan(x) → returns an angle in radians +Example: atan(1) = 0.78538 + atan sinh Hyperbolic sine function -Usage: sinh(angle θ in radians) - sinh +Usage: sinh(θ) +Example: sinh(1) = 1.1752 + sinh cosh Hyperbolic cosine -Usage: cosh(angle θ in radians) - cosh +Usage: cosh(θ) → returns a number greater than or equal to 1 +Example: cosh(0) = 1 + cosh tanh Hyperbolic tangent function -Usage: tanh(angle θ in radians) - tanh +Usage: tanh(θ) → returns a number between -1 and 1 (excluded) +Example: tanh(1) = 0.761594 + tanh asinh Inverse Hyperbolic sine function -Usage: asinh(x) - asinh +Usage: asinh(x) +Example: asinh(90) = 5.19299 + asinh acosh Inverse Hyperbolic cosine function -Usage: acosh(x) - acosh +Usage: acosh(x greater than or equal to 1) +Example: acosh(2) = 1.31696 + acosh atanh Inverse Hyperbolic tangent function -Usage: atanh(x) - atanh +Usage: atanh(x between -1 and 1 (excluded)) +Example: atanh(0,99) = 2.64665 + atanh sinD Sine function working with degrees -Usage: sinD(angle θ in degrees) - sinD +Usage: sinD(angle θ in degrees) → returns a number between -1 and 1 +Example: sinD(90) = 1 + sinD cosD Cosine function working with degrees -Usage: cosD(angle θ in degrees) - cosD +Usage: cosD(angle θ in degrees) → returns a number between -1 and 1 +Example: cosD(180) = -1 + cosD tanD Tangent function working with degrees -Usage: tanD(angle θ in degrees) - tanD +Usage: tanD(angle θ in degrees) +Example: tanD(45) = 1 + tanD asinD Inverse sine function working with degrees -Usage: asinD(x) - asinD +Usage: asinD(x between -1 and 1) → returns an angle in degrees +Example: asinD(1) = 90 + asinD acosD Inverse cosine function working with degrees -Usage: acosD(x) - acosD +Usage: acosD(x between -1 and 1) → returns an angle in degrees +Example: acosD(-1) = 180 + acosD atanD Inverse tangent function working with degrees -Usage: atanD(x) - atanD +Usage: atanD(x) → returns an angle in degrees +Example: atanD(1) = 45 + atanD log2 Logarithm to the base 2 -Usage: log2(x) - log2 +Usage: log2(x greater than 0) +Example: log2(10) = 3.32193 + log2 log10 - Logarithm to the base 10 -Usage: log10(x) - log10 + Logarithm to the base 10 (same as log(x)) +Usage: log10(x greater than 0) +Example: log10(10) = 1 + log10 log Logarithm to the base 10 -Usage: log(x) - log +Usage: log(x greater than 0) +Example: log(10) = 1 + log ln Logarithm to base e (2.71828...) -Usage: ln(x) - ln +Usage: ln(x greater than 0) +Example: ln(10) = 2.30259 + ln exp - E raised to the power of x -Usage: exp(x) where e = 2.718 - exp + e raised to the power of x where e = 2.718 +Usage: exp(x) → returns a positive number +Example: exp(2) = 7.38906 + exp sqrt Square root of a value -Usage: sqrt(x) - sqrt +Usage: sqrt(x greater than or equal to 0) → returns a positive number +Example: sqrt(4) = 2 + sqrt sign Sign function -1 if x<0; 1 if x>0 -Usage: sign(x) - sign +Usage: sign(x) → returns -1, 0 or 1 +Example: sign(-3) = -1 + sign rint Round to nearest integer -Usage: rint(float x) - rint +Usage: rint(x) → returns an integer number +Example: rint(2.3) = 2 + rint abs Absolute value -Usage: abs(x) - abs +Usage: abs(x) → returns a positive number +Example: abs(-5) = 5 + abs min Min of all arguments -Usage: min(arg 1; arg 2; ... arg n) - min +Usage: min(arg 1; arg 2; ... arg n) +Example: min(2;3;4) = 2 + min max Max of all arguments -Usage: max(arg 1; arg 2; ... arg n) - max +Usage: max(arg 1; arg 2; ... arg n) +Example: max(2;3;4) = 4 + max sum Sum of all arguments -Usage: sum(arg 1; arg 2; ... arg n) - sum +Usage: sum(arg 1; arg 2; ... arg n) +Example: sum(2;3;4) = 9 + sum avg Mean value of all arguments -Usage: avg(arg 1; arg 2; ... arg n) - avg +Usage: avg(arg 1; arg 2; ... arg n) +Example: avg(2;3;4) = 3 + avg fmod Returns the floating-point remainder of x/y (rounded towards zero) -Usage: fmod(x; y) - fmod - - - M_ - Leave the _ symbol in translation - M_ - - - Variable_ - Leave the _ symbol in translation - - - - Line_ - Leave the _ symbol in translation - Line_ - - - AngleLine_ - Leave the _ symbol in translation - AngleLine_ - - - Arc_ - Leave the _ symbol in translation - Arc_ - - - ElArc_ - Leave the _ symbol in translation - - - - Spl_ - Leave the _ symbol in translation - Spl_ - - - RadiusArc_ - Leave the _ symbol in translation - RadiusArc_ - - - Radius1ElArc_ - Leave the _ symbol in translation - - - - Radius2ElArc_ - Leave the _ symbol in translation - - - - Angle1Arc_ - Leave the _ symbol in translation - Angle1Arc_ - - - Angle2Arc_ - Leave the _ symbol in translation - Angle2Arc_ - - - Angle1ElArc_ - Leave the _ symbol in translation - - - - Angle2ElArc_ - Leave the _ symbol in translation - - - - Angle1Spl_ - Leave the _ symbol in translation - Angle1Spl_ - - - Angle2Spl_ - Leave the _ symbol in translation - Angle2Spl_ - - - C1LengthSpl_ - Leave the _ symbol in translation - C1LengthSpl_ - - - C2LengthSpl_ - Leave the _ symbol in translation - C2LengthSpl_ +Usage: fmod(x; y) +Example: fmod(3.3;2) = 1.3 + fmod diff --git a/share/translations/seamly2d_en_US.ts b/share/translations/seamly2d_en_US.ts index dd504193f2a6..2b9c8ebdf169 100644 --- a/share/translations/seamly2d_en_US.ts +++ b/share/translations/seamly2d_en_US.ts @@ -173,6 +173,13 @@ + + AddImage + + add image + + + AddPiece @@ -4820,10 +4827,6 @@ Do you want to download it? File may be corrupted... - - File may be corrupted or empty... - - Confirm deletion @@ -4832,16 +4835,6 @@ Do you want to download it? Do you really want to delete? - - Images will not be saved - - - - Please note that the images can not be saved and that they are not affected by the undo and redo functions in the current version of the software. - -You may want to take a screenshot of the image properties dialog before closing the software to be able to recreate identically the image when opening the software again. - - InsertNodesDialog @@ -13125,6 +13118,10 @@ load in SeamlyME as usual. Error creating or updating union pieces + + Image_name + + VPoster @@ -14928,299 +14925,333 @@ load in SeamlyME as usual. placeholder + + M_ + Leave the _ symbol in translation + + + + Variable_ + Leave the _ symbol in translation + + + + Line_ + Leave the _ symbol in translation + Line_ + + + AngleLine_ + Leave the _ symbol in translation + + + + Arc_ + Leave the _ symbol in translation + Arc_ + + + ElArc_ + Leave the _ symbol in translation + + + + Spl_ + Leave the _ symbol in translation + Spl_ + + + RadiusArc_ + Leave the _ symbol in translation + + + + Radius1ElArc_ + Leave the _ symbol in translation + + + + Radius2ElArc_ + Leave the _ symbol in translation + + + + Angle1Arc_ + Leave the _ symbol in translation + + + + Angle2Arc_ + Leave the _ symbol in translation + + + + Angle1ElArc_ + Leave the _ symbol in translation + + + + Angle2ElArc_ + Leave the _ symbol in translation + + + + Angle1Spl_ + Leave the _ symbol in translation + + + + Angle2Spl_ + Leave the _ symbol in translation + + + + C1LengthSpl_ + Leave the _ symbol in translation + + + + C2LengthSpl_ + Leave the _ symbol in translation + + degTorad Converts degrees to radians -Usage: degTorad(angle θ in degrees) - degTorad +Usage: degTorad(angle θ in degrees) → returns an angle in radians +Example: degTorad(180) = 3.14159 + degTorad radTodeg Converts radians to degrees -Usage: radTodeg(angle θ in radians) - radTodeg +Usage: radTodeg(angle θ in radians) → returns an angle in degrees +Example: radTodeg(3.14159) = 180 + radTodeg sin Sine function working with radians -Usage: sin(angle θ in radians) - sin +Usage: sin(angle θ in radians) → returns a number between -1 and 1 +Example: sin(90) = 0.893997 + sin cos Cosine function working with radians -Usage: cos(angle θ in radians) - cos +Usage: cos(angle θ in radians) → returns a number between -1 and 1 +Example: cos(1) = 0.540302 + cos tan Tangent function working with radians -Usage: tan(angle θ in radians) - tan +Usage: tan(angle θ in radians) +Example: tan(1) = 1.55741 + tan asin Inverse sine function working with radians -Usage: asin(x) - asin +Usage: asin(x between -1 and 1) → returns an angle in radians +Example: asin(-1) = -1.5708 + asin acos Inverse cosine function working with radians -Usage: acos(x) - acos +Usage: acos(x between -1 and 1) → returns an angle in radians +Example: acos(0.1) = 1.47063 + acos atan Inverse tangent function working with radians -Usage: atan(x) - atan +Usage: atan(x) → returns an angle in radians +Example: atan(1) = 0.78538 + atan sinh Hyperbolic sine function -Usage: sinh(angle θ in radians) - sinh +Usage: sinh(θ) +Example: sinh(1) = 1.1752 + sinh cosh Hyperbolic cosine -Usage: cosh(angle θ in radians) - cosh +Usage: cosh(θ) → returns a number greater than or equal to 1 +Example: cosh(0) = 1 + cosh tanh Hyperbolic tangent function -Usage: tanh(angle θ in radians) - tanh +Usage: tanh(θ) → returns a number between -1 and 1 (excluded) +Example: tanh(1) = 0.761594 + tanh asinh Inverse Hyperbolic sine function -Usage: asinh(x) - asinh +Usage: asinh(x) +Example: asinh(90) = 5.19299 + asinh acosh Inverse Hyperbolic cosine function -Usage: acosh(x) - acosh +Usage: acosh(x greater than or equal to 1) +Example: acosh(2) = 1.31696 + acosh atanh Inverse Hyperbolic tangent function -Usage: atanh(x) - atanh +Usage: atanh(x between -1 and 1 (excluded)) +Example: atanh(0,99) = 2.64665 + atanh sinD Sine function working with degrees -Usage: sinD(angle θ in degrees) - sinD +Usage: sinD(angle θ in degrees) → returns a number between -1 and 1 +Example: sinD(90) = 1 + sinD cosD Cosine function working with degrees -Usage: cosD(angle θ in degrees) - cosD +Usage: cosD(angle θ in degrees) → returns a number between -1 and 1 +Example: cosD(180) = -1 + cosD tanD Tangent function working with degrees -Usage: tanD(angle θ in degrees) - tanD +Usage: tanD(angle θ in degrees) +Example: tanD(45) = 1 + tanD asinD Inverse sine function working with degrees -Usage: asinD(x) - asinD +Usage: asinD(x between -1 and 1) → returns an angle in degrees +Example: asinD(1) = 90 + asinD acosD Inverse cosine function working with degrees -Usage: acosD(x) - acosD +Usage: acosD(x between -1 and 1) → returns an angle in degrees +Example: acosD(-1) = 180 + acosD atanD Inverse tangent function working with degrees -Usage: atanD(x) - atanD +Usage: atanD(x) → returns an angle in degrees +Example: atanD(1) = 45 + atanD log2 Logarithm to the base 2 -Usage: log2(x) - log2 +Usage: log2(x greater than 0) +Example: log2(10) = 3.32193 + log2 log10 - Logarithm to the base 10 -Usage: log10(x) - log10 + Logarithm to the base 10 (same as log(x)) +Usage: log10(x greater than 0) +Example: log10(10) = 1 + log10 log Logarithm to the base 10 -Usage: log(x) - log +Usage: log(x greater than 0) +Example: log(10) = 1 + log ln Logarithm to base e (2.71828...) -Usage: ln(x) - ln +Usage: ln(x greater than 0) +Example: ln(10) = 2.30259 + ln exp - E raised to the power of x -Usage: exp(x) where e = 2.718 - exp + e raised to the power of x where e = 2.718 +Usage: exp(x) → returns a positive number +Example: exp(2) = 7.38906 + exp sqrt Square root of a value -Usage: sqrt(x) - sqrt +Usage: sqrt(x greater than or equal to 0) → returns a positive number +Example: sqrt(4) = 2 + sqrt sign Sign function -1 if x<0; 1 if x>0 -Usage: sign(x) - sign +Usage: sign(x) → returns -1, 0 or 1 +Example: sign(-3) = -1 + sign rint Round to nearest integer -Usage: rint(float x) - rint +Usage: rint(x) → returns an integer number +Example: rint(2.3) = 2 + rint abs Absolute value -Usage: abs(x) - abs +Usage: abs(x) → returns a positive number +Example: abs(-5) = 5 + abs min Min of all arguments -Usage: min(arg 1; arg 2; ... arg n) - min +Usage: min(arg 1; arg 2; ... arg n) +Example: min(2;3;4) = 2 + min max Max of all arguments -Usage: max(arg 1; arg 2; ... arg n) - max +Usage: max(arg 1; arg 2; ... arg n) +Example: max(2;3;4) = 4 + max sum Sum of all arguments -Usage: sum(arg 1; arg 2; ... arg n) - sum +Usage: sum(arg 1; arg 2; ... arg n) +Example: sum(2;3;4) = 9 + sum avg Mean value of all arguments -Usage: avg(arg 1; arg 2; ... arg n) - avg +Usage: avg(arg 1; arg 2; ... arg n) +Example: avg(2;3;4) = 3 + avg fmod Returns the floating-point remainder of x/y (rounded towards zero) -Usage: fmod(x; y) - fmod - - - M_ - Leave the _ symbol in translation - - - - Variable_ - Leave the _ symbol in translation - - - - Line_ - Leave the _ symbol in translation - Line_ - - - AngleLine_ - Leave the _ symbol in translation - - - - Arc_ - Leave the _ symbol in translation - Arc_ - - - ElArc_ - Leave the _ symbol in translation - - - - Spl_ - Leave the _ symbol in translation - Spl_ - - - RadiusArc_ - Leave the _ symbol in translation - - - - Radius1ElArc_ - Leave the _ symbol in translation - - - - Radius2ElArc_ - Leave the _ symbol in translation - - - - Angle1Arc_ - Leave the _ symbol in translation - - - - Angle2Arc_ - Leave the _ symbol in translation - - - - Angle1ElArc_ - Leave the _ symbol in translation - - - - Angle2ElArc_ - Leave the _ symbol in translation - - - - Angle1Spl_ - Leave the _ symbol in translation - - - - Angle2Spl_ - Leave the _ symbol in translation - - - - C1LengthSpl_ - Leave the _ symbol in translation - - - - C2LengthSpl_ - Leave the _ symbol in translation - +Usage: fmod(x; y) +Example: fmod(3.3;2) = 1.3 + fmod diff --git a/share/translations/seamly2d_es_ES.ts b/share/translations/seamly2d_es_ES.ts index 55c5887405c2..f81405accbed 100644 --- a/share/translations/seamly2d_es_ES.ts +++ b/share/translations/seamly2d_es_ES.ts @@ -173,6 +173,13 @@ Añadir elemento al grupo + + AddImage + + add image + + + AddPiece @@ -4200,14 +4207,6 @@ for writing No es posible abrir el archivo %1 para la escritura - - - Unable to get exclusive access to file -%1 -Possibly the file is already being downloaded. - No se puede obtener acceso exclusivo al archivo -%1 -Posiblemente el archivo ya está siendo descargado. File download failed: %1. @@ -4227,6 +4226,12 @@ Do you want to download it? Una nueva versión %1 está disponible. ¿Quiere descargarla? + + Unable to get exclusive access to file +%1 +Possibly the file is already being downloaded. + + GroupsWidget @@ -4866,10 +4871,6 @@ Do you want to download it? File may be corrupted... El archivo puede estar dañado... - - File may be corrupted or empty... - El archivo puede estar dañado o vacío... - Confirm deletion Confirmar la eliminación @@ -4878,18 +4879,6 @@ Do you want to download it? Do you really want to delete? ¿Realmente quiere eliminarlo? - - Images will not be saved - Las imágenes no se guardarán - - - Please note that the images can not be saved and that they are not affected by the undo and redo functions in the current version of the software. - -You may want to take a screenshot of the image properties dialog before closing the software to be able to recreate identically the image when opening the software again. - Tenga en cuenta que las imágenes no se pueden guardar y que no se ven afectadas por las funciones de deshacer y rehacer de la versión actual del software. - -Es posible que desee tomar una captura de pantalla del cuadro de diálogo de propiedades de la imagen antes de cerrar el software para poder recrear idénticamente la imagen al abrir de nuevo el software. - InsertNodesDialog @@ -5219,14 +5208,6 @@ El programa se proporciona TAL CUAL, SIN GARANTÍA DE NINGÚN TIPO, INCLUIDAS LA Descending area Área descendente - - Margins go beyond printing. - -Apply settings anyway? - Los márgenes van más allá de la impresión. - -¿Aplicar ajustes de todos modos? - Centimeters Centímetros @@ -5354,6 +5335,12 @@ Apply settings anyway? Printer Ninguno + + Margins go beyond printing. + +Apply settings anyway? + + LineTypeComboBox @@ -10343,20 +10330,6 @@ actualización: Decimal separator: Separador decimal: - - Selects what decimal separator char to use. -When checked the separator for the user's locale is used. -When unchecked the period is used. - Selecciona el carácter separador decimal a utilizar. -Si está marcada, se utiliza el separador de la configuración regional del usuario. -Si no se selecciona, se utiliza el punto. - - - When checked the Welcome window will not be displayed. -You can change this setting in the SeamlyMe preferences. - Si esta opción está seleccionada, no se mostrará la ventana de bienvenida. -Puede cambiar esta configuración en las preferencias de SeamlyMe. - GUI language: GUI Idioma: @@ -10385,6 +10358,17 @@ Puede cambiar esta configuración en las preferencias de SeamlyMe. Inches Pulgadas + + Selects what decimal separator char to use. +When checked the separator for the user's locale is used. +When unchecked the period is used. + + + + When checked the Welcome window will not be displayed. +You can change this setting in the SeamlyMe preferences. + + SeamlyWelcomeDialog @@ -10408,12 +10392,6 @@ Puede cambiar esta configuración en las preferencias de SeamlyMe. Decimal separator: Separador decimal: - - When checked the Welcome window will not be displayed. -You can change this setting in the Seamly2D preferences. - Si esta opción está seleccionada, no se mostrará la ventana de bienvenida. -Puede cambiar esta configuración en las preferencias de Seamly2D. - GUI language: GUI Idioma: @@ -10446,14 +10424,6 @@ Puede cambiar esta configuración en las preferencias de Seamly2D. Please choose your preferred units, decimal separator, language, and selection sound. (You can change these later.) Elija las unidades, el separador decimal, el idioma y el sonido de selección que prefiera. (Puede cambiarlos más adelante.) - - Selects what decimal separator char to use. -When checked the separator for the user's locale is used. -When unchecked the period is used. - Selecciona el carácter separador decimal a utilizar. -Si está marcada, se utiliza el separador de la configuración regional del usuario. -Si no se selecciona, se utiliza el punto. - Sound: Sonido: @@ -10462,6 +10432,17 @@ Si no se selecciona, se utiliza el punto. Sets the node selection click sound. Establece el sonido del clic de selección del nodo. + + Selects what decimal separator char to use. +When checked the separator for the user's locale is used. +When unchecked the period is used. + + + + When checked the Welcome window will not be displayed. +You can change this setting in the Seamly2D preferences. + + SetPieceColor @@ -13217,6 +13198,10 @@ load in SeamlyME as usual. Error creating or updating union pieces Error al crear o actualizar la unión de piezas + + Image_name + + VPoster @@ -15212,333 +15197,333 @@ load in SeamlyME as usual. marcador de posición wLomo + + M_ + Leave the _ symbol in translation + M_ + + + Variable_ + Leave the _ symbol in translation + Variable_ + + + Line_ + Leave the _ symbol in translation + Línea_ + + + AngleLine_ + Leave the _ symbol in translation + AngleLine_ + + + Arc_ + Leave the _ symbol in translation + Arco_ + + + ElArc_ + Leave the _ symbol in translation + ElArco_ + + + Spl_ + Leave the _ symbol in translation + Spl_ + + + RadiusArc_ + Leave the _ symbol in translation + RadiusArc_ + + + Radius1ElArc_ + Leave the _ symbol in translation + Radius1ElArc_ + + + Radius2ElArc_ + Leave the _ symbol in translation + Radius2ElArc_ + + + Angle1Arc_ + Leave the _ symbol in translation + Angle1Arc_ + + + Angle2Arc_ + Leave the _ symbol in translation + Angle2Arc_ + + + Angle1ElArc_ + Leave the _ symbol in translation + Angle1ElArc_ + + + Angle2ElArc_ + Leave the _ symbol in translation + Angle2ElArc_ + + + Angle1Spl_ + Leave the _ symbol in translation + Angle1Spl_ + + + Angle2Spl_ + Leave the _ symbol in translation + Angle2Spl_ + + + C1LengthSpl_ + Leave the _ symbol in translation + C1LengthSpl_ + + + C2LengthSpl_ + Leave the _ symbol in translation + C2LengthSpl_ + degTorad Converts degrees to radians -Usage: degTorad(angle θ in degrees) - Convierte grados a radianes Uso: degTorad(ángulo θ en grados) - +Usage: degTorad(angle θ in degrees) → returns an angle in radians +Example: degTorad(180) = 3.14159 + radTodeg Converts radians to degrees -Usage: radTodeg(angle θ in radians) - Convierte radianes a grados Uso: radTodeg(ángulo θ en radianes) - radTodeg +Usage: radTodeg(angle θ in radians) → returns an angle in degrees +Example: radTodeg(3.14159) = 180 + radTodeg sin Sine function working with radians -Usage: sin(angle θ in radians) - Función seno trabaja con radianes Uso: sin(ángulo θ en radianes) - sin +Usage: sin(angle θ in radians) → returns a number between -1 and 1 +Example: sin(90) = 0.893997 + sin cos Cosine function working with radians -Usage: cos(angle θ in radians) - Función coseno trabaja con radianes Uso: cos(ángulo θ en radianes) - cos +Usage: cos(angle θ in radians) → returns a number between -1 and 1 +Example: cos(1) = 0.540302 + cos tan Tangent function working with radians -Usage: tan(angle θ in radians) - Función tangente trabaja con radianes Uso: tan(ángulo θ en radianes) - tan +Usage: tan(angle θ in radians) +Example: tan(1) = 1.55741 + tan asin Inverse sine function working with radians -Usage: asin(x) - Función seno inverso trabaja con radianes Uso: asin(x) - asin +Usage: asin(x between -1 and 1) → returns an angle in radians +Example: asin(-1) = -1.5708 + asin acos Inverse cosine function working with radians -Usage: acos(x) - Función coseno inverso trabaja con radianes Uso: acos(x) - acos +Usage: acos(x between -1 and 1) → returns an angle in radians +Example: acos(0.1) = 1.47063 + acos atan Inverse tangent function working with radians -Usage: atan(x) - Función tangente inversa trabaja con radianes Uso: atan(x) - atan +Usage: atan(x) → returns an angle in radians +Example: atan(1) = 0.78538 + atan sinh Hyperbolic sine function -Usage: sinh(angle θ in radians) - Función seno hiperbólica Uso: sinh(ángulo θ en radianes) - sinh +Usage: sinh(θ) +Example: sinh(1) = 1.1752 + sinh cosh Hyperbolic cosine -Usage: cosh(angle θ in radians) - Uso del coseno hiperbólico: cosh (ángulo θ en radianes) - cosh +Usage: cosh(θ) → returns a number greater than or equal to 1 +Example: cosh(0) = 1 + cosh tanh Hyperbolic tangent function -Usage: tanh(angle θ in radians) - Función tangente hiperbólica Uso: tanh(ángulo θ en radianes) - tanh +Usage: tanh(θ) → returns a number between -1 and 1 (excluded) +Example: tanh(1) = 0.761594 + tanh asinh Inverse Hyperbolic sine function -Usage: asinh(x) - Función seno hiperbólica inversa Uso: asinh(x) - asinh +Usage: asinh(x) +Example: asinh(90) = 5.19299 + asinh acosh Inverse Hyperbolic cosine function -Usage: acosh(x) - Función coseno hiperbólica inversa Uso: acosh(x) - acosh +Usage: acosh(x greater than or equal to 1) +Example: acosh(2) = 1.31696 + acosh atanh Inverse Hyperbolic tangent function -Usage: atanh(x) - Función tangente hiperbólica inversa Uso: atanh(x) - atanh +Usage: atanh(x between -1 and 1 (excluded)) +Example: atanh(0,99) = 2.64665 + atanh sinD Sine function working with degrees -Usage: sinD(angle θ in degrees) - Función seno trabaja con grados Uso: sinD(ángulo θ en grados) - sinD +Usage: sinD(angle θ in degrees) → returns a number between -1 and 1 +Example: sinD(90) = 1 + sinD cosD Cosine function working with degrees -Usage: cosD(angle θ in degrees) - Función coseno trabaja con grados Uso: cosD(ángulo θ en grados) - cosD +Usage: cosD(angle θ in degrees) → returns a number between -1 and 1 +Example: cosD(180) = -1 + cosD tanD Tangent function working with degrees -Usage: tanD(angle θ in degrees) - Función tangente trabaja con grados Uso: tanD(ángulo θ en grados) - tanD +Usage: tanD(angle θ in degrees) +Example: tanD(45) = 1 + tanD asinD Inverse sine function working with degrees -Usage: asinD(x) - Función seno inverso trabaja con grados Uso: asinD(x) - asinD +Usage: asinD(x between -1 and 1) → returns an angle in degrees +Example: asinD(1) = 90 + asinD acosD Inverse cosine function working with degrees -Usage: acosD(x) - Función coseno inverso trabaja con grados Uso: acosD(x) - acosD +Usage: acosD(x between -1 and 1) → returns an angle in degrees +Example: acosD(-1) = 180 + acosD atanD Inverse tangent function working with degrees -Usage: atanD(x) - Función tangente inversa trabaja con grados Uso: atanD(x) - atanD +Usage: atanD(x) → returns an angle in degrees +Example: atanD(1) = 45 + atanD log2 Logarithm to the base 2 -Usage: log2(x) - Logaritmo en base 2 Uso: log2(x) - log2 +Usage: log2(x greater than 0) +Example: log2(10) = 3.32193 + log2 log10 - Logarithm to the base 10 -Usage: log10(x) - Logaritmo en base 10 Uso: log10(x) - log10 + Logarithm to the base 10 (same as log(x)) +Usage: log10(x greater than 0) +Example: log10(10) = 1 + log10 log Logarithm to the base 10 -Usage: log(x) - Logaritmo en base 10 Uso: log(x) - log +Usage: log(x greater than 0) +Example: log(10) = 1 + log ln Logarithm to base e (2.71828...) -Usage: ln(x) - Logaritmo en base e (2,71828...) Uso: ln(x) - in +Usage: ln(x greater than 0) +Example: ln(10) = 2.30259 + in exp - E raised to the power of x -Usage: exp(x) where e = 2.718 - E elevado a la potencia x Uso: exp(x) donde e = 2,718 - exp + e raised to the power of x where e = 2.718 +Usage: exp(x) → returns a positive number +Example: exp(2) = 7.38906 + exp sqrt Square root of a value -Usage: sqrt(x) - Raíz cuadrada de un valor Uso: sqrt(x) - sqrt +Usage: sqrt(x greater than or equal to 0) → returns a positive number +Example: sqrt(4) = 2 + sqrt sign Sign function -1 if x<0; 1 if x>0 -Usage: sign(x) - Función de signo -1 si x<0; 1 si x>0 Uso: signo(x) - sign +Usage: sign(x) → returns -1, 0 or 1 +Example: sign(-3) = -1 + sign rint Round to nearest integer -Usage: rint(float x) - Redondear al entero más cercano Uso: rint(float x) - rint +Usage: rint(x) → returns an integer number +Example: rint(2.3) = 2 + rint abs Absolute value -Usage: abs(x) - Valor absoluto Uso: abs(x) - abs +Usage: abs(x) → returns a positive number +Example: abs(-5) = 5 + abs min Min of all arguments -Usage: min(arg 1; arg 2; ... arg n) - Mínimo de todos los argumentos Uso: min(arg 1; arg 2; ... arg n) - min +Usage: min(arg 1; arg 2; ... arg n) +Example: min(2;3;4) = 2 + min max Max of all arguments -Usage: max(arg 1; arg 2; ... arg n) - Máximo de todos los argumentos Uso: max(arg 1; arg 2; ... arg n) - max +Usage: max(arg 1; arg 2; ... arg n) +Example: max(2;3;4) = 4 + max sum Sum of all arguments -Usage: sum(arg 1; arg 2; ... arg n) - Suma de todos los argumentos Uso: suma(arg 1; arg 2; ... arg n) - sum +Usage: sum(arg 1; arg 2; ... arg n) +Example: sum(2;3;4) = 9 + sum avg Mean value of all arguments -Usage: avg(arg 1; arg 2; ... arg n) - Valor medio de todos los argumentos Uso: avg(arg 1; arg 2; ... arg n) - avg +Usage: avg(arg 1; arg 2; ... arg n) +Example: avg(2;3;4) = 3 + avg fmod Returns the floating-point remainder of x/y (rounded towards zero) -Usage: fmod(x; y) - Devuelve el resto en coma flotante de x/y (redondeado hacia cero) Uso: fmod(x; y) - fmod - - - M_ - Leave the _ symbol in translation - M_ - - - Variable_ - Leave the _ symbol in translation - Variable_ - - - Line_ - Leave the _ symbol in translation - Línea_ - - - AngleLine_ - Leave the _ symbol in translation - AngleLine_ - - - Arc_ - Leave the _ symbol in translation - Arco_ - - - ElArc_ - Leave the _ symbol in translation - ElArco_ - - - Spl_ - Leave the _ symbol in translation - Spl_ - - - RadiusArc_ - Leave the _ symbol in translation - RadiusArc_ - - - Radius1ElArc_ - Leave the _ symbol in translation - Radius1ElArc_ - - - Radius2ElArc_ - Leave the _ symbol in translation - Radius2ElArc_ - - - Angle1Arc_ - Leave the _ symbol in translation - Angle1Arc_ - - - Angle2Arc_ - Leave the _ symbol in translation - Angle2Arc_ - - - Angle1ElArc_ - Leave the _ symbol in translation - Angle1ElArc_ - - - Angle2ElArc_ - Leave the _ symbol in translation - Angle2ElArc_ - - - Angle1Spl_ - Leave the _ symbol in translation - Angle1Spl_ - - - Angle2Spl_ - Leave the _ symbol in translation - Angle2Spl_ - - - C1LengthSpl_ - Leave the _ symbol in translation - C1LengthSpl_ - - - C2LengthSpl_ - Leave the _ symbol in translation - C2LengthSpl_ +Usage: fmod(x; y) +Example: fmod(3.3;2) = 1.3 + fmod diff --git a/share/translations/seamly2d_fi_FI.ts b/share/translations/seamly2d_fi_FI.ts index 5bd7ac92ad4e..f69900bb068d 100644 --- a/share/translations/seamly2d_fi_FI.ts +++ b/share/translations/seamly2d_fi_FI.ts @@ -173,6 +173,13 @@ + + AddImage + + add image + + + AddPiece @@ -4820,10 +4827,6 @@ Do you want to download it? File may be corrupted... - - File may be corrupted or empty... - - Confirm deletion Varmista poistaminen @@ -4832,16 +4835,6 @@ Do you want to download it? Do you really want to delete? Haluatko todella poistaa? - - Images will not be saved - - - - Please note that the images can not be saved and that they are not affected by the undo and redo functions in the current version of the software. - -You may want to take a screenshot of the image properties dialog before closing the software to be able to recreate identically the image when opening the software again. - - InsertNodesDialog @@ -13121,6 +13114,10 @@ load in SeamlyME as usual. Error creating or updating union pieces + + Image_name + + VPoster @@ -14924,299 +14921,333 @@ load in SeamlyME as usual. placeholder + + M_ + Leave the _ symbol in translation + + + + Variable_ + Leave the _ symbol in translation + + + + Line_ + Leave the _ symbol in translation + Viiva_ + + + AngleLine_ + Leave the _ symbol in translation + KulmaViiva_ + + + Arc_ + Leave the _ symbol in translation + Kaari_ + + + ElArc_ + Leave the _ symbol in translation + + + + Spl_ + Leave the _ symbol in translation + Spl_ + + + RadiusArc_ + Leave the _ symbol in translation + + + + Radius1ElArc_ + Leave the _ symbol in translation + + + + Radius2ElArc_ + Leave the _ symbol in translation + + + + Angle1Arc_ + Leave the _ symbol in translation + + + + Angle2Arc_ + Leave the _ symbol in translation + + + + Angle1ElArc_ + Leave the _ symbol in translation + + + + Angle2ElArc_ + Leave the _ symbol in translation + + + + Angle1Spl_ + Leave the _ symbol in translation + + + + Angle2Spl_ + Leave the _ symbol in translation + + + + C1LengthSpl_ + Leave the _ symbol in translation + + + + C2LengthSpl_ + Leave the _ symbol in translation + + degTorad Converts degrees to radians -Usage: degTorad(angle θ in degrees) - degTorad +Usage: degTorad(angle θ in degrees) → returns an angle in radians +Example: degTorad(180) = 3.14159 + degTorad radTodeg Converts radians to degrees -Usage: radTodeg(angle θ in radians) - radTodeg +Usage: radTodeg(angle θ in radians) → returns an angle in degrees +Example: radTodeg(3.14159) = 180 + radTodeg sin Sine function working with radians -Usage: sin(angle θ in radians) - sin +Usage: sin(angle θ in radians) → returns a number between -1 and 1 +Example: sin(90) = 0.893997 + sin cos Cosine function working with radians -Usage: cos(angle θ in radians) - cos +Usage: cos(angle θ in radians) → returns a number between -1 and 1 +Example: cos(1) = 0.540302 + cos tan Tangent function working with radians -Usage: tan(angle θ in radians) - tan +Usage: tan(angle θ in radians) +Example: tan(1) = 1.55741 + tan asin Inverse sine function working with radians -Usage: asin(x) - asin +Usage: asin(x between -1 and 1) → returns an angle in radians +Example: asin(-1) = -1.5708 + asin acos Inverse cosine function working with radians -Usage: acos(x) - acos +Usage: acos(x between -1 and 1) → returns an angle in radians +Example: acos(0.1) = 1.47063 + acos atan Inverse tangent function working with radians -Usage: atan(x) - atan +Usage: atan(x) → returns an angle in radians +Example: atan(1) = 0.78538 + atan sinh Hyperbolic sine function -Usage: sinh(angle θ in radians) - sinh +Usage: sinh(θ) +Example: sinh(1) = 1.1752 + sinh cosh Hyperbolic cosine -Usage: cosh(angle θ in radians) - cosh +Usage: cosh(θ) → returns a number greater than or equal to 1 +Example: cosh(0) = 1 + cosh tanh Hyperbolic tangent function -Usage: tanh(angle θ in radians) - tanh +Usage: tanh(θ) → returns a number between -1 and 1 (excluded) +Example: tanh(1) = 0.761594 + tanh asinh Inverse Hyperbolic sine function -Usage: asinh(x) - asinh +Usage: asinh(x) +Example: asinh(90) = 5.19299 + asinh acosh Inverse Hyperbolic cosine function -Usage: acosh(x) - acosh +Usage: acosh(x greater than or equal to 1) +Example: acosh(2) = 1.31696 + acosh atanh Inverse Hyperbolic tangent function -Usage: atanh(x) - atanh +Usage: atanh(x between -1 and 1 (excluded)) +Example: atanh(0,99) = 2.64665 + atanh sinD Sine function working with degrees -Usage: sinD(angle θ in degrees) - sinD +Usage: sinD(angle θ in degrees) → returns a number between -1 and 1 +Example: sinD(90) = 1 + sinD cosD Cosine function working with degrees -Usage: cosD(angle θ in degrees) - cosD +Usage: cosD(angle θ in degrees) → returns a number between -1 and 1 +Example: cosD(180) = -1 + cosD tanD Tangent function working with degrees -Usage: tanD(angle θ in degrees) - tanD +Usage: tanD(angle θ in degrees) +Example: tanD(45) = 1 + tanD asinD Inverse sine function working with degrees -Usage: asinD(x) - asinD +Usage: asinD(x between -1 and 1) → returns an angle in degrees +Example: asinD(1) = 90 + asinD acosD Inverse cosine function working with degrees -Usage: acosD(x) - acosD +Usage: acosD(x between -1 and 1) → returns an angle in degrees +Example: acosD(-1) = 180 + acosD atanD Inverse tangent function working with degrees -Usage: atanD(x) - atanD +Usage: atanD(x) → returns an angle in degrees +Example: atanD(1) = 45 + atanD log2 Logarithm to the base 2 -Usage: log2(x) - log2 +Usage: log2(x greater than 0) +Example: log2(10) = 3.32193 + log2 log10 - Logarithm to the base 10 -Usage: log10(x) - log10 + Logarithm to the base 10 (same as log(x)) +Usage: log10(x greater than 0) +Example: log10(10) = 1 + log10 log Logarithm to the base 10 -Usage: log(x) - log +Usage: log(x greater than 0) +Example: log(10) = 1 + log ln Logarithm to base e (2.71828...) -Usage: ln(x) - ln +Usage: ln(x greater than 0) +Example: ln(10) = 2.30259 + ln exp - E raised to the power of x -Usage: exp(x) where e = 2.718 - exp + e raised to the power of x where e = 2.718 +Usage: exp(x) → returns a positive number +Example: exp(2) = 7.38906 + exp sqrt Square root of a value -Usage: sqrt(x) - sqrt +Usage: sqrt(x greater than or equal to 0) → returns a positive number +Example: sqrt(4) = 2 + sqrt sign Sign function -1 if x<0; 1 if x>0 -Usage: sign(x) - sign +Usage: sign(x) → returns -1, 0 or 1 +Example: sign(-3) = -1 + sign rint Round to nearest integer -Usage: rint(float x) - rint +Usage: rint(x) → returns an integer number +Example: rint(2.3) = 2 + rint abs Absolute value -Usage: abs(x) - abs +Usage: abs(x) → returns a positive number +Example: abs(-5) = 5 + abs min Min of all arguments -Usage: min(arg 1; arg 2; ... arg n) - min +Usage: min(arg 1; arg 2; ... arg n) +Example: min(2;3;4) = 2 + min max Max of all arguments -Usage: max(arg 1; arg 2; ... arg n) - max +Usage: max(arg 1; arg 2; ... arg n) +Example: max(2;3;4) = 4 + max sum Sum of all arguments -Usage: sum(arg 1; arg 2; ... arg n) - sum +Usage: sum(arg 1; arg 2; ... arg n) +Example: sum(2;3;4) = 9 + sum avg Mean value of all arguments -Usage: avg(arg 1; arg 2; ... arg n) - avg +Usage: avg(arg 1; arg 2; ... arg n) +Example: avg(2;3;4) = 3 + avg fmod Returns the floating-point remainder of x/y (rounded towards zero) -Usage: fmod(x; y) - fmod - - - M_ - Leave the _ symbol in translation - - - - Variable_ - Leave the _ symbol in translation - - - - Line_ - Leave the _ symbol in translation - Viiva_ - - - AngleLine_ - Leave the _ symbol in translation - KulmaViiva_ - - - Arc_ - Leave the _ symbol in translation - Kaari_ - - - ElArc_ - Leave the _ symbol in translation - - - - Spl_ - Leave the _ symbol in translation - Spl_ - - - RadiusArc_ - Leave the _ symbol in translation - - - - Radius1ElArc_ - Leave the _ symbol in translation - - - - Radius2ElArc_ - Leave the _ symbol in translation - - - - Angle1Arc_ - Leave the _ symbol in translation - - - - Angle2Arc_ - Leave the _ symbol in translation - - - - Angle1ElArc_ - Leave the _ symbol in translation - - - - Angle2ElArc_ - Leave the _ symbol in translation - - - - Angle1Spl_ - Leave the _ symbol in translation - - - - Angle2Spl_ - Leave the _ symbol in translation - - - - C1LengthSpl_ - Leave the _ symbol in translation - - - - C2LengthSpl_ - Leave the _ symbol in translation - +Usage: fmod(x; y) +Example: fmod(3.3;2) = 1.3 + fmod diff --git a/share/translations/seamly2d_fr_FR.ts b/share/translations/seamly2d_fr_FR.ts index 3f0c39bc4a48..e6b88e3b823c 100644 --- a/share/translations/seamly2d_fr_FR.ts +++ b/share/translations/seamly2d_fr_FR.ts @@ -173,6 +173,13 @@ + + AddImage + + add image + + + AddPiece @@ -4820,10 +4827,6 @@ Do you want to download it? File may be corrupted... - - File may be corrupted or empty... - - Confirm deletion Confirmer la suppression @@ -4832,16 +4835,6 @@ Do you want to download it? Do you really want to delete? Voulez vous vraiment supprimer? - - Images will not be saved - - - - Please note that the images can not be saved and that they are not affected by the undo and redo functions in the current version of the software. - -You may want to take a screenshot of the image properties dialog before closing the software to be able to recreate identically the image when opening the software again. - - InsertNodesDialog @@ -13124,6 +13117,10 @@ load in SeamlyME as usual. Error creating or updating union pieces + + Image_name + + VPoster @@ -14927,299 +14924,333 @@ load in SeamlyME as usual. placeholder + + M_ + Leave the _ symbol in translation + + + + Variable_ + Leave the _ symbol in translation + + + + Line_ + Leave the _ symbol in translation + Ligne_ + + + AngleLine_ + Leave the _ symbol in translation + AngleLine_ + + + Arc_ + Leave the _ symbol in translation + Arc_ + + + ElArc_ + Leave the _ symbol in translation + + + + Spl_ + Leave the _ symbol in translation + Spl_ + + + RadiusArc_ + Leave the _ symbol in translation + RadiusArc_ + + + Radius1ElArc_ + Leave the _ symbol in translation + + + + Radius2ElArc_ + Leave the _ symbol in translation + + + + Angle1Arc_ + Leave the _ symbol in translation + Angle1Arc_ + + + Angle2Arc_ + Leave the _ symbol in translation + Angle2Arc_ + + + Angle1ElArc_ + Leave the _ symbol in translation + + + + Angle2ElArc_ + Leave the _ symbol in translation + + + + Angle1Spl_ + Leave the _ symbol in translation + Angle1Spl_ + + + Angle2Spl_ + Leave the _ symbol in translation + Angle2Spl_ + + + C1LengthSpl_ + Leave the _ symbol in translation + + + + C2LengthSpl_ + Leave the _ symbol in translation + + degTorad Converts degrees to radians -Usage: degTorad(angle θ in degrees) - degTorad +Usage: degTorad(angle θ in degrees) → returns an angle in radians +Example: degTorad(180) = 3.14159 + degTorad radTodeg Converts radians to degrees -Usage: radTodeg(angle θ in radians) - radTodeg +Usage: radTodeg(angle θ in radians) → returns an angle in degrees +Example: radTodeg(3.14159) = 180 + radTodeg sin Sine function working with radians -Usage: sin(angle θ in radians) - sin +Usage: sin(angle θ in radians) → returns a number between -1 and 1 +Example: sin(90) = 0.893997 + sin cos Cosine function working with radians -Usage: cos(angle θ in radians) - cos +Usage: cos(angle θ in radians) → returns a number between -1 and 1 +Example: cos(1) = 0.540302 + cos tan Tangent function working with radians -Usage: tan(angle θ in radians) - tan +Usage: tan(angle θ in radians) +Example: tan(1) = 1.55741 + tan asin Inverse sine function working with radians -Usage: asin(x) - asin +Usage: asin(x between -1 and 1) → returns an angle in radians +Example: asin(-1) = -1.5708 + asin acos Inverse cosine function working with radians -Usage: acos(x) - acos +Usage: acos(x between -1 and 1) → returns an angle in radians +Example: acos(0.1) = 1.47063 + acos atan Inverse tangent function working with radians -Usage: atan(x) - atan +Usage: atan(x) → returns an angle in radians +Example: atan(1) = 0.78538 + atan sinh Hyperbolic sine function -Usage: sinh(angle θ in radians) - sinh +Usage: sinh(θ) +Example: sinh(1) = 1.1752 + sinh cosh Hyperbolic cosine -Usage: cosh(angle θ in radians) - cosh +Usage: cosh(θ) → returns a number greater than or equal to 1 +Example: cosh(0) = 1 + cosh tanh Hyperbolic tangent function -Usage: tanh(angle θ in radians) - tanh +Usage: tanh(θ) → returns a number between -1 and 1 (excluded) +Example: tanh(1) = 0.761594 + tanh asinh Inverse Hyperbolic sine function -Usage: asinh(x) - asinh +Usage: asinh(x) +Example: asinh(90) = 5.19299 + asinh acosh Inverse Hyperbolic cosine function -Usage: acosh(x) - acosh +Usage: acosh(x greater than or equal to 1) +Example: acosh(2) = 1.31696 + acosh atanh Inverse Hyperbolic tangent function -Usage: atanh(x) - atanh +Usage: atanh(x between -1 and 1 (excluded)) +Example: atanh(0,99) = 2.64665 + atanh sinD Sine function working with degrees -Usage: sinD(angle θ in degrees) - sinD +Usage: sinD(angle θ in degrees) → returns a number between -1 and 1 +Example: sinD(90) = 1 + sinD cosD Cosine function working with degrees -Usage: cosD(angle θ in degrees) - cosD +Usage: cosD(angle θ in degrees) → returns a number between -1 and 1 +Example: cosD(180) = -1 + cosD tanD Tangent function working with degrees -Usage: tanD(angle θ in degrees) - tanD +Usage: tanD(angle θ in degrees) +Example: tanD(45) = 1 + tanD asinD Inverse sine function working with degrees -Usage: asinD(x) - asinD +Usage: asinD(x between -1 and 1) → returns an angle in degrees +Example: asinD(1) = 90 + asinD acosD Inverse cosine function working with degrees -Usage: acosD(x) - acosD +Usage: acosD(x between -1 and 1) → returns an angle in degrees +Example: acosD(-1) = 180 + acosD atanD Inverse tangent function working with degrees -Usage: atanD(x) - atanD +Usage: atanD(x) → returns an angle in degrees +Example: atanD(1) = 45 + atanD log2 Logarithm to the base 2 -Usage: log2(x) - log2 +Usage: log2(x greater than 0) +Example: log2(10) = 3.32193 + log2 log10 - Logarithm to the base 10 -Usage: log10(x) - log10 + Logarithm to the base 10 (same as log(x)) +Usage: log10(x greater than 0) +Example: log10(10) = 1 + log10 log Logarithm to the base 10 -Usage: log(x) - log +Usage: log(x greater than 0) +Example: log(10) = 1 + log ln Logarithm to base e (2.71828...) -Usage: ln(x) - ln +Usage: ln(x greater than 0) +Example: ln(10) = 2.30259 + ln exp - E raised to the power of x -Usage: exp(x) where e = 2.718 - exp + e raised to the power of x where e = 2.718 +Usage: exp(x) → returns a positive number +Example: exp(2) = 7.38906 + exp sqrt Square root of a value -Usage: sqrt(x) - sqrt +Usage: sqrt(x greater than or equal to 0) → returns a positive number +Example: sqrt(4) = 2 + sqrt sign Sign function -1 if x<0; 1 if x>0 -Usage: sign(x) - sign +Usage: sign(x) → returns -1, 0 or 1 +Example: sign(-3) = -1 + sign rint Round to nearest integer -Usage: rint(float x) - rint +Usage: rint(x) → returns an integer number +Example: rint(2.3) = 2 + rint abs Absolute value -Usage: abs(x) - abs +Usage: abs(x) → returns a positive number +Example: abs(-5) = 5 + abs min Min of all arguments -Usage: min(arg 1; arg 2; ... arg n) - min +Usage: min(arg 1; arg 2; ... arg n) +Example: min(2;3;4) = 2 + min max Max of all arguments -Usage: max(arg 1; arg 2; ... arg n) - max +Usage: max(arg 1; arg 2; ... arg n) +Example: max(2;3;4) = 4 + max sum Sum of all arguments -Usage: sum(arg 1; arg 2; ... arg n) - sum +Usage: sum(arg 1; arg 2; ... arg n) +Example: sum(2;3;4) = 9 + sum avg Mean value of all arguments -Usage: avg(arg 1; arg 2; ... arg n) - avg +Usage: avg(arg 1; arg 2; ... arg n) +Example: avg(2;3;4) = 3 + avg fmod Returns the floating-point remainder of x/y (rounded towards zero) -Usage: fmod(x; y) - fmod - - - M_ - Leave the _ symbol in translation - - - - Variable_ - Leave the _ symbol in translation - - - - Line_ - Leave the _ symbol in translation - Ligne_ - - - AngleLine_ - Leave the _ symbol in translation - AngleLine_ - - - Arc_ - Leave the _ symbol in translation - Arc_ - - - ElArc_ - Leave the _ symbol in translation - - - - Spl_ - Leave the _ symbol in translation - Spl_ - - - RadiusArc_ - Leave the _ symbol in translation - RadiusArc_ - - - Radius1ElArc_ - Leave the _ symbol in translation - - - - Radius2ElArc_ - Leave the _ symbol in translation - - - - Angle1Arc_ - Leave the _ symbol in translation - Angle1Arc_ - - - Angle2Arc_ - Leave the _ symbol in translation - Angle2Arc_ - - - Angle1ElArc_ - Leave the _ symbol in translation - - - - Angle2ElArc_ - Leave the _ symbol in translation - - - - Angle1Spl_ - Leave the _ symbol in translation - Angle1Spl_ - - - Angle2Spl_ - Leave the _ symbol in translation - Angle2Spl_ - - - C1LengthSpl_ - Leave the _ symbol in translation - - - - C2LengthSpl_ - Leave the _ symbol in translation - +Usage: fmod(x; y) +Example: fmod(3.3;2) = 1.3 + fmod diff --git a/share/translations/seamly2d_he_IL.ts b/share/translations/seamly2d_he_IL.ts index eb77d9da17e3..79b8bcd38a32 100644 --- a/share/translations/seamly2d_he_IL.ts +++ b/share/translations/seamly2d_he_IL.ts @@ -173,6 +173,13 @@ + + AddImage + + add image + + + AddPiece @@ -4820,10 +4827,6 @@ Do you want to download it? File may be corrupted... - - File may be corrupted or empty... - - Confirm deletion @@ -4832,16 +4835,6 @@ Do you want to download it? Do you really want to delete? - - Images will not be saved - - - - Please note that the images can not be saved and that they are not affected by the undo and redo functions in the current version of the software. - -You may want to take a screenshot of the image properties dialog before closing the software to be able to recreate identically the image when opening the software again. - - InsertNodesDialog @@ -13118,6 +13111,10 @@ load in SeamlyME as usual. Error creating or updating union pieces + + Image_name + + VPoster @@ -14921,298 +14918,332 @@ load in SeamlyME as usual. placeholder + + M_ + Leave the _ symbol in translation + + + + Variable_ + Leave the _ symbol in translation + + + + Line_ + Leave the _ symbol in translation + + + + AngleLine_ + Leave the _ symbol in translation + + + + Arc_ + Leave the _ symbol in translation + + + + ElArc_ + Leave the _ symbol in translation + + + + Spl_ + Leave the _ symbol in translation + + + + RadiusArc_ + Leave the _ symbol in translation + + + + Radius1ElArc_ + Leave the _ symbol in translation + + + + Radius2ElArc_ + Leave the _ symbol in translation + + + + Angle1Arc_ + Leave the _ symbol in translation + + + + Angle2Arc_ + Leave the _ symbol in translation + + + + Angle1ElArc_ + Leave the _ symbol in translation + + + + Angle2ElArc_ + Leave the _ symbol in translation + + + + Angle1Spl_ + Leave the _ symbol in translation + + + + Angle2Spl_ + Leave the _ symbol in translation + + + + C1LengthSpl_ + Leave the _ symbol in translation + + + + C2LengthSpl_ + Leave the _ symbol in translation + + degTorad Converts degrees to radians -Usage: degTorad(angle θ in degrees) +Usage: degTorad(angle θ in degrees) → returns an angle in radians +Example: degTorad(180) = 3.14159 radTodeg Converts radians to degrees -Usage: radTodeg(angle θ in radians) +Usage: radTodeg(angle θ in radians) → returns an angle in degrees +Example: radTodeg(3.14159) = 180 sin Sine function working with radians -Usage: sin(angle θ in radians) +Usage: sin(angle θ in radians) → returns a number between -1 and 1 +Example: sin(90) = 0.893997 cos Cosine function working with radians -Usage: cos(angle θ in radians) +Usage: cos(angle θ in radians) → returns a number between -1 and 1 +Example: cos(1) = 0.540302 tan Tangent function working with radians -Usage: tan(angle θ in radians) +Usage: tan(angle θ in radians) +Example: tan(1) = 1.55741 asin Inverse sine function working with radians -Usage: asin(x) +Usage: asin(x between -1 and 1) → returns an angle in radians +Example: asin(-1) = -1.5708 acos Inverse cosine function working with radians -Usage: acos(x) +Usage: acos(x between -1 and 1) → returns an angle in radians +Example: acos(0.1) = 1.47063 atan Inverse tangent function working with radians -Usage: atan(x) +Usage: atan(x) → returns an angle in radians +Example: atan(1) = 0.78538 sinh Hyperbolic sine function -Usage: sinh(angle θ in radians) +Usage: sinh(θ) +Example: sinh(1) = 1.1752 cosh Hyperbolic cosine -Usage: cosh(angle θ in radians) +Usage: cosh(θ) → returns a number greater than or equal to 1 +Example: cosh(0) = 1 tanh Hyperbolic tangent function -Usage: tanh(angle θ in radians) +Usage: tanh(θ) → returns a number between -1 and 1 (excluded) +Example: tanh(1) = 0.761594 asinh Inverse Hyperbolic sine function -Usage: asinh(x) +Usage: asinh(x) +Example: asinh(90) = 5.19299 acosh Inverse Hyperbolic cosine function -Usage: acosh(x) +Usage: acosh(x greater than or equal to 1) +Example: acosh(2) = 1.31696 atanh Inverse Hyperbolic tangent function -Usage: atanh(x) +Usage: atanh(x between -1 and 1 (excluded)) +Example: atanh(0,99) = 2.64665 sinD Sine function working with degrees -Usage: sinD(angle θ in degrees) +Usage: sinD(angle θ in degrees) → returns a number between -1 and 1 +Example: sinD(90) = 1 cosD Cosine function working with degrees -Usage: cosD(angle θ in degrees) +Usage: cosD(angle θ in degrees) → returns a number between -1 and 1 +Example: cosD(180) = -1 tanD Tangent function working with degrees -Usage: tanD(angle θ in degrees) +Usage: tanD(angle θ in degrees) +Example: tanD(45) = 1 asinD Inverse sine function working with degrees -Usage: asinD(x) +Usage: asinD(x between -1 and 1) → returns an angle in degrees +Example: asinD(1) = 90 acosD Inverse cosine function working with degrees -Usage: acosD(x) +Usage: acosD(x between -1 and 1) → returns an angle in degrees +Example: acosD(-1) = 180 atanD Inverse tangent function working with degrees -Usage: atanD(x) +Usage: atanD(x) → returns an angle in degrees +Example: atanD(1) = 45 log2 Logarithm to the base 2 -Usage: log2(x) +Usage: log2(x greater than 0) +Example: log2(10) = 3.32193 log10 - Logarithm to the base 10 -Usage: log10(x) + Logarithm to the base 10 (same as log(x)) +Usage: log10(x greater than 0) +Example: log10(10) = 1 log Logarithm to the base 10 -Usage: log(x) +Usage: log(x greater than 0) +Example: log(10) = 1 ln Logarithm to base e (2.71828...) -Usage: ln(x) +Usage: ln(x greater than 0) +Example: ln(10) = 2.30259 exp - E raised to the power of x -Usage: exp(x) where e = 2.718 + e raised to the power of x where e = 2.718 +Usage: exp(x) → returns a positive number +Example: exp(2) = 7.38906 sqrt Square root of a value -Usage: sqrt(x) +Usage: sqrt(x greater than or equal to 0) → returns a positive number +Example: sqrt(4) = 2 sign Sign function -1 if x<0; 1 if x>0 -Usage: sign(x) +Usage: sign(x) → returns -1, 0 or 1 +Example: sign(-3) = -1 rint Round to nearest integer -Usage: rint(float x) +Usage: rint(x) → returns an integer number +Example: rint(2.3) = 2 abs Absolute value -Usage: abs(x) +Usage: abs(x) → returns a positive number +Example: abs(-5) = 5 min Min of all arguments -Usage: min(arg 1; arg 2; ... arg n) +Usage: min(arg 1; arg 2; ... arg n) +Example: min(2;3;4) = 2 max Max of all arguments -Usage: max(arg 1; arg 2; ... arg n) +Usage: max(arg 1; arg 2; ... arg n) +Example: max(2;3;4) = 4 sum Sum of all arguments -Usage: sum(arg 1; arg 2; ... arg n) +Usage: sum(arg 1; arg 2; ... arg n) +Example: sum(2;3;4) = 9 avg Mean value of all arguments -Usage: avg(arg 1; arg 2; ... arg n) +Usage: avg(arg 1; arg 2; ... arg n) +Example: avg(2;3;4) = 3 fmod Returns the floating-point remainder of x/y (rounded towards zero) -Usage: fmod(x; y) - - - - M_ - Leave the _ symbol in translation - - - - Variable_ - Leave the _ symbol in translation - - - - Line_ - Leave the _ symbol in translation - - - - AngleLine_ - Leave the _ symbol in translation - - - - Arc_ - Leave the _ symbol in translation - - - - ElArc_ - Leave the _ symbol in translation - - - - Spl_ - Leave the _ symbol in translation - - - - RadiusArc_ - Leave the _ symbol in translation - - - - Radius1ElArc_ - Leave the _ symbol in translation - - - - Radius2ElArc_ - Leave the _ symbol in translation - - - - Angle1Arc_ - Leave the _ symbol in translation - - - - Angle2Arc_ - Leave the _ symbol in translation - - - - Angle1ElArc_ - Leave the _ symbol in translation - - - - Angle2ElArc_ - Leave the _ symbol in translation - - - - Angle1Spl_ - Leave the _ symbol in translation - - - - Angle2Spl_ - Leave the _ symbol in translation - - - - C1LengthSpl_ - Leave the _ symbol in translation - - - - C2LengthSpl_ - Leave the _ symbol in translation +Usage: fmod(x; y) +Example: fmod(3.3;2) = 1.3 diff --git a/share/translations/seamly2d_id_ID.ts b/share/translations/seamly2d_id_ID.ts index 10475b1fe4d7..0b9ecfe78330 100644 --- a/share/translations/seamly2d_id_ID.ts +++ b/share/translations/seamly2d_id_ID.ts @@ -173,6 +173,13 @@ + + AddImage + + add image + + + AddPiece @@ -4820,10 +4827,6 @@ Do you want to download it? File may be corrupted... - - File may be corrupted or empty... - - Confirm deletion @@ -4832,16 +4835,6 @@ Do you want to download it? Do you really want to delete? - - Images will not be saved - - - - Please note that the images can not be saved and that they are not affected by the undo and redo functions in the current version of the software. - -You may want to take a screenshot of the image properties dialog before closing the software to be able to recreate identically the image when opening the software again. - - InsertNodesDialog @@ -13119,6 +13112,10 @@ load in SeamlyME as usual. Error creating or updating union pieces + + Image_name + + VPoster @@ -14922,298 +14919,332 @@ load in SeamlyME as usual. placeholder + + M_ + Leave the _ symbol in translation + + + + Variable_ + Leave the _ symbol in translation + + + + Line_ + Leave the _ symbol in translation + + + + AngleLine_ + Leave the _ symbol in translation + + + + Arc_ + Leave the _ symbol in translation + + + + ElArc_ + Leave the _ symbol in translation + + + + Spl_ + Leave the _ symbol in translation + + + + RadiusArc_ + Leave the _ symbol in translation + + + + Radius1ElArc_ + Leave the _ symbol in translation + + + + Radius2ElArc_ + Leave the _ symbol in translation + + + + Angle1Arc_ + Leave the _ symbol in translation + + + + Angle2Arc_ + Leave the _ symbol in translation + + + + Angle1ElArc_ + Leave the _ symbol in translation + + + + Angle2ElArc_ + Leave the _ symbol in translation + + + + Angle1Spl_ + Leave the _ symbol in translation + + + + Angle2Spl_ + Leave the _ symbol in translation + + + + C1LengthSpl_ + Leave the _ symbol in translation + + + + C2LengthSpl_ + Leave the _ symbol in translation + + degTorad Converts degrees to radians -Usage: degTorad(angle θ in degrees) +Usage: degTorad(angle θ in degrees) → returns an angle in radians +Example: degTorad(180) = 3.14159 radTodeg Converts radians to degrees -Usage: radTodeg(angle θ in radians) +Usage: radTodeg(angle θ in radians) → returns an angle in degrees +Example: radTodeg(3.14159) = 180 sin Sine function working with radians -Usage: sin(angle θ in radians) +Usage: sin(angle θ in radians) → returns a number between -1 and 1 +Example: sin(90) = 0.893997 cos Cosine function working with radians -Usage: cos(angle θ in radians) +Usage: cos(angle θ in radians) → returns a number between -1 and 1 +Example: cos(1) = 0.540302 tan Tangent function working with radians -Usage: tan(angle θ in radians) +Usage: tan(angle θ in radians) +Example: tan(1) = 1.55741 asin Inverse sine function working with radians -Usage: asin(x) +Usage: asin(x between -1 and 1) → returns an angle in radians +Example: asin(-1) = -1.5708 acos Inverse cosine function working with radians -Usage: acos(x) +Usage: acos(x between -1 and 1) → returns an angle in radians +Example: acos(0.1) = 1.47063 atan Inverse tangent function working with radians -Usage: atan(x) +Usage: atan(x) → returns an angle in radians +Example: atan(1) = 0.78538 sinh Hyperbolic sine function -Usage: sinh(angle θ in radians) +Usage: sinh(θ) +Example: sinh(1) = 1.1752 cosh Hyperbolic cosine -Usage: cosh(angle θ in radians) +Usage: cosh(θ) → returns a number greater than or equal to 1 +Example: cosh(0) = 1 tanh Hyperbolic tangent function -Usage: tanh(angle θ in radians) +Usage: tanh(θ) → returns a number between -1 and 1 (excluded) +Example: tanh(1) = 0.761594 asinh Inverse Hyperbolic sine function -Usage: asinh(x) +Usage: asinh(x) +Example: asinh(90) = 5.19299 acosh Inverse Hyperbolic cosine function -Usage: acosh(x) +Usage: acosh(x greater than or equal to 1) +Example: acosh(2) = 1.31696 atanh Inverse Hyperbolic tangent function -Usage: atanh(x) +Usage: atanh(x between -1 and 1 (excluded)) +Example: atanh(0,99) = 2.64665 sinD Sine function working with degrees -Usage: sinD(angle θ in degrees) +Usage: sinD(angle θ in degrees) → returns a number between -1 and 1 +Example: sinD(90) = 1 cosD Cosine function working with degrees -Usage: cosD(angle θ in degrees) +Usage: cosD(angle θ in degrees) → returns a number between -1 and 1 +Example: cosD(180) = -1 tanD Tangent function working with degrees -Usage: tanD(angle θ in degrees) +Usage: tanD(angle θ in degrees) +Example: tanD(45) = 1 asinD Inverse sine function working with degrees -Usage: asinD(x) +Usage: asinD(x between -1 and 1) → returns an angle in degrees +Example: asinD(1) = 90 acosD Inverse cosine function working with degrees -Usage: acosD(x) +Usage: acosD(x between -1 and 1) → returns an angle in degrees +Example: acosD(-1) = 180 atanD Inverse tangent function working with degrees -Usage: atanD(x) +Usage: atanD(x) → returns an angle in degrees +Example: atanD(1) = 45 log2 Logarithm to the base 2 -Usage: log2(x) +Usage: log2(x greater than 0) +Example: log2(10) = 3.32193 log10 - Logarithm to the base 10 -Usage: log10(x) + Logarithm to the base 10 (same as log(x)) +Usage: log10(x greater than 0) +Example: log10(10) = 1 log Logarithm to the base 10 -Usage: log(x) +Usage: log(x greater than 0) +Example: log(10) = 1 ln Logarithm to base e (2.71828...) -Usage: ln(x) +Usage: ln(x greater than 0) +Example: ln(10) = 2.30259 exp - E raised to the power of x -Usage: exp(x) where e = 2.718 + e raised to the power of x where e = 2.718 +Usage: exp(x) → returns a positive number +Example: exp(2) = 7.38906 sqrt Square root of a value -Usage: sqrt(x) +Usage: sqrt(x greater than or equal to 0) → returns a positive number +Example: sqrt(4) = 2 sign Sign function -1 if x<0; 1 if x>0 -Usage: sign(x) +Usage: sign(x) → returns -1, 0 or 1 +Example: sign(-3) = -1 rint Round to nearest integer -Usage: rint(float x) +Usage: rint(x) → returns an integer number +Example: rint(2.3) = 2 abs Absolute value -Usage: abs(x) +Usage: abs(x) → returns a positive number +Example: abs(-5) = 5 min Min of all arguments -Usage: min(arg 1; arg 2; ... arg n) +Usage: min(arg 1; arg 2; ... arg n) +Example: min(2;3;4) = 2 max Max of all arguments -Usage: max(arg 1; arg 2; ... arg n) +Usage: max(arg 1; arg 2; ... arg n) +Example: max(2;3;4) = 4 sum Sum of all arguments -Usage: sum(arg 1; arg 2; ... arg n) +Usage: sum(arg 1; arg 2; ... arg n) +Example: sum(2;3;4) = 9 avg Mean value of all arguments -Usage: avg(arg 1; arg 2; ... arg n) +Usage: avg(arg 1; arg 2; ... arg n) +Example: avg(2;3;4) = 3 fmod Returns the floating-point remainder of x/y (rounded towards zero) -Usage: fmod(x; y) - - - - M_ - Leave the _ symbol in translation - - - - Variable_ - Leave the _ symbol in translation - - - - Line_ - Leave the _ symbol in translation - - - - AngleLine_ - Leave the _ symbol in translation - - - - Arc_ - Leave the _ symbol in translation - - - - ElArc_ - Leave the _ symbol in translation - - - - Spl_ - Leave the _ symbol in translation - - - - RadiusArc_ - Leave the _ symbol in translation - - - - Radius1ElArc_ - Leave the _ symbol in translation - - - - Radius2ElArc_ - Leave the _ symbol in translation - - - - Angle1Arc_ - Leave the _ symbol in translation - - - - Angle2Arc_ - Leave the _ symbol in translation - - - - Angle1ElArc_ - Leave the _ symbol in translation - - - - Angle2ElArc_ - Leave the _ symbol in translation - - - - Angle1Spl_ - Leave the _ symbol in translation - - - - Angle2Spl_ - Leave the _ symbol in translation - - - - C1LengthSpl_ - Leave the _ symbol in translation - - - - C2LengthSpl_ - Leave the _ symbol in translation +Usage: fmod(x; y) +Example: fmod(3.3;2) = 1.3 diff --git a/share/translations/seamly2d_it_IT.ts b/share/translations/seamly2d_it_IT.ts index 732b8d4ef46c..56e59e062a28 100644 --- a/share/translations/seamly2d_it_IT.ts +++ b/share/translations/seamly2d_it_IT.ts @@ -173,6 +173,13 @@ + + AddImage + + add image + + + AddPiece @@ -4820,10 +4827,6 @@ Do you want to download it? File may be corrupted... - - File may be corrupted or empty... - - Confirm deletion Conferma cancellazione @@ -4832,16 +4835,6 @@ Do you want to download it? Do you really want to delete? Vuoi veramente cancellare? - - Images will not be saved - - - - Please note that the images can not be saved and that they are not affected by the undo and redo functions in the current version of the software. - -You may want to take a screenshot of the image properties dialog before closing the software to be able to recreate identically the image when opening the software again. - - InsertNodesDialog @@ -13123,6 +13116,10 @@ load in SeamlyME as usual. Error creating or updating union pieces + + Image_name + + VPoster @@ -14926,299 +14923,333 @@ load in SeamlyME as usual. placeholder + + M_ + Leave the _ symbol in translation + + + + Variable_ + Leave the _ symbol in translation + + + + Line_ + Leave the _ symbol in translation + Linea_ + + + AngleLine_ + Leave the _ symbol in translation + + + + Arc_ + Leave the _ symbol in translation + Arco_ + + + ElArc_ + Leave the _ symbol in translation + + + + Spl_ + Leave the _ symbol in translation + + + + RadiusArc_ + Leave the _ symbol in translation + RaggioArco_ + + + Radius1ElArc_ + Leave the _ symbol in translation + + + + Radius2ElArc_ + Leave the _ symbol in translation + + + + Angle1Arc_ + Leave the _ symbol in translation + + + + Angle2Arc_ + Leave the _ symbol in translation + + + + Angle1ElArc_ + Leave the _ symbol in translation + + + + Angle2ElArc_ + Leave the _ symbol in translation + + + + Angle1Spl_ + Leave the _ symbol in translation + + + + Angle2Spl_ + Leave the _ symbol in translation + + + + C1LengthSpl_ + Leave the _ symbol in translation + + + + C2LengthSpl_ + Leave the _ symbol in translation + + degTorad Converts degrees to radians -Usage: degTorad(angle θ in degrees) - degTorad +Usage: degTorad(angle θ in degrees) → returns an angle in radians +Example: degTorad(180) = 3.14159 + degTorad radTodeg Converts radians to degrees -Usage: radTodeg(angle θ in radians) - radTodeg +Usage: radTodeg(angle θ in radians) → returns an angle in degrees +Example: radTodeg(3.14159) = 180 + radTodeg sin Sine function working with radians -Usage: sin(angle θ in radians) - sin +Usage: sin(angle θ in radians) → returns a number between -1 and 1 +Example: sin(90) = 0.893997 + sin cos Cosine function working with radians -Usage: cos(angle θ in radians) - cos +Usage: cos(angle θ in radians) → returns a number between -1 and 1 +Example: cos(1) = 0.540302 + cos tan Tangent function working with radians -Usage: tan(angle θ in radians) - tan +Usage: tan(angle θ in radians) +Example: tan(1) = 1.55741 + tan asin Inverse sine function working with radians -Usage: asin(x) - asin +Usage: asin(x between -1 and 1) → returns an angle in radians +Example: asin(-1) = -1.5708 + asin acos Inverse cosine function working with radians -Usage: acos(x) - acos +Usage: acos(x between -1 and 1) → returns an angle in radians +Example: acos(0.1) = 1.47063 + acos atan Inverse tangent function working with radians -Usage: atan(x) - atan +Usage: atan(x) → returns an angle in radians +Example: atan(1) = 0.78538 + atan sinh Hyperbolic sine function -Usage: sinh(angle θ in radians) - sinh +Usage: sinh(θ) +Example: sinh(1) = 1.1752 + sinh cosh Hyperbolic cosine -Usage: cosh(angle θ in radians) - cosh +Usage: cosh(θ) → returns a number greater than or equal to 1 +Example: cosh(0) = 1 + cosh tanh Hyperbolic tangent function -Usage: tanh(angle θ in radians) - tanh +Usage: tanh(θ) → returns a number between -1 and 1 (excluded) +Example: tanh(1) = 0.761594 + tanh asinh Inverse Hyperbolic sine function -Usage: asinh(x) - asinh +Usage: asinh(x) +Example: asinh(90) = 5.19299 + asinh acosh Inverse Hyperbolic cosine function -Usage: acosh(x) - acosh +Usage: acosh(x greater than or equal to 1) +Example: acosh(2) = 1.31696 + acosh atanh Inverse Hyperbolic tangent function -Usage: atanh(x) - atanh +Usage: atanh(x between -1 and 1 (excluded)) +Example: atanh(0,99) = 2.64665 + atanh sinD Sine function working with degrees -Usage: sinD(angle θ in degrees) - sinD +Usage: sinD(angle θ in degrees) → returns a number between -1 and 1 +Example: sinD(90) = 1 + sinD cosD Cosine function working with degrees -Usage: cosD(angle θ in degrees) - cosD +Usage: cosD(angle θ in degrees) → returns a number between -1 and 1 +Example: cosD(180) = -1 + cosD tanD Tangent function working with degrees -Usage: tanD(angle θ in degrees) - tanD +Usage: tanD(angle θ in degrees) +Example: tanD(45) = 1 + tanD asinD Inverse sine function working with degrees -Usage: asinD(x) - asinD +Usage: asinD(x between -1 and 1) → returns an angle in degrees +Example: asinD(1) = 90 + asinD acosD Inverse cosine function working with degrees -Usage: acosD(x) - acosD +Usage: acosD(x between -1 and 1) → returns an angle in degrees +Example: acosD(-1) = 180 + acosD atanD Inverse tangent function working with degrees -Usage: atanD(x) - atanD +Usage: atanD(x) → returns an angle in degrees +Example: atanD(1) = 45 + atanD log2 Logarithm to the base 2 -Usage: log2(x) - log2 +Usage: log2(x greater than 0) +Example: log2(10) = 3.32193 + log2 log10 - Logarithm to the base 10 -Usage: log10(x) - log10 + Logarithm to the base 10 (same as log(x)) +Usage: log10(x greater than 0) +Example: log10(10) = 1 + log10 log Logarithm to the base 10 -Usage: log(x) - log +Usage: log(x greater than 0) +Example: log(10) = 1 + log ln Logarithm to base e (2.71828...) -Usage: ln(x) - ln +Usage: ln(x greater than 0) +Example: ln(10) = 2.30259 + ln exp - E raised to the power of x -Usage: exp(x) where e = 2.718 - exp + e raised to the power of x where e = 2.718 +Usage: exp(x) → returns a positive number +Example: exp(2) = 7.38906 + exp sqrt Square root of a value -Usage: sqrt(x) - sqrt +Usage: sqrt(x greater than or equal to 0) → returns a positive number +Example: sqrt(4) = 2 + sqrt sign Sign function -1 if x<0; 1 if x>0 -Usage: sign(x) - sign +Usage: sign(x) → returns -1, 0 or 1 +Example: sign(-3) = -1 + sign rint Round to nearest integer -Usage: rint(float x) - rint +Usage: rint(x) → returns an integer number +Example: rint(2.3) = 2 + rint abs Absolute value -Usage: abs(x) - abs +Usage: abs(x) → returns a positive number +Example: abs(-5) = 5 + abs min Min of all arguments -Usage: min(arg 1; arg 2; ... arg n) - min +Usage: min(arg 1; arg 2; ... arg n) +Example: min(2;3;4) = 2 + min max Max of all arguments -Usage: max(arg 1; arg 2; ... arg n) - max +Usage: max(arg 1; arg 2; ... arg n) +Example: max(2;3;4) = 4 + max sum Sum of all arguments -Usage: sum(arg 1; arg 2; ... arg n) - sum +Usage: sum(arg 1; arg 2; ... arg n) +Example: sum(2;3;4) = 9 + sum avg Mean value of all arguments -Usage: avg(arg 1; arg 2; ... arg n) - avg +Usage: avg(arg 1; arg 2; ... arg n) +Example: avg(2;3;4) = 3 + avg fmod Returns the floating-point remainder of x/y (rounded towards zero) -Usage: fmod(x; y) - fmod - - - M_ - Leave the _ symbol in translation - - - - Variable_ - Leave the _ symbol in translation - - - - Line_ - Leave the _ symbol in translation - Linea_ - - - AngleLine_ - Leave the _ symbol in translation - - - - Arc_ - Leave the _ symbol in translation - Arco_ - - - ElArc_ - Leave the _ symbol in translation - - - - Spl_ - Leave the _ symbol in translation - - - - RadiusArc_ - Leave the _ symbol in translation - RaggioArco_ - - - Radius1ElArc_ - Leave the _ symbol in translation - - - - Radius2ElArc_ - Leave the _ symbol in translation - - - - Angle1Arc_ - Leave the _ symbol in translation - - - - Angle2Arc_ - Leave the _ symbol in translation - - - - Angle1ElArc_ - Leave the _ symbol in translation - - - - Angle2ElArc_ - Leave the _ symbol in translation - - - - Angle1Spl_ - Leave the _ symbol in translation - - - - Angle2Spl_ - Leave the _ symbol in translation - - - - C1LengthSpl_ - Leave the _ symbol in translation - - - - C2LengthSpl_ - Leave the _ symbol in translation - +Usage: fmod(x; y) +Example: fmod(3.3;2) = 1.3 + fmod diff --git a/share/translations/seamly2d_nl_NL.ts b/share/translations/seamly2d_nl_NL.ts index 9fb190379d37..18356dd0af1d 100644 --- a/share/translations/seamly2d_nl_NL.ts +++ b/share/translations/seamly2d_nl_NL.ts @@ -173,6 +173,13 @@ + + AddImage + + add image + + + AddPiece @@ -4825,10 +4832,6 @@ Do you want to download it? File may be corrupted... - - File may be corrupted or empty... - - Confirm deletion Bevestig verwijdering @@ -4837,16 +4840,6 @@ Do you want to download it? Do you really want to delete? Wil je dit echt verwijderen? - - Images will not be saved - - - - Please note that the images can not be saved and that they are not affected by the undo and redo functions in the current version of the software. - -You may want to take a screenshot of the image properties dialog before closing the software to be able to recreate identically the image when opening the software again. - - InsertNodesDialog @@ -13135,6 +13128,10 @@ load in SeamlyME as usual. Error creating or updating union pieces Fout bij het maken of bijwerken van verenigde patroondelen + + Image_name + + VPoster @@ -14938,299 +14935,333 @@ load in SeamlyME as usual. placeholder + + M_ + Leave the _ symbol in translation + M_ + + + Variable_ + Leave the _ symbol in translation + Variable_ + + + Line_ + Leave the _ symbol in translation + Lijn_ + + + AngleLine_ + Leave the _ symbol in translation + HoekLijn_ + + + Arc_ + Leave the _ symbol in translation + Boog_ + + + ElArc_ + Leave the _ symbol in translation + EllBoog_ + + + Spl_ + Leave the _ symbol in translation + Spl_ + + + RadiusArc_ + Leave the _ symbol in translation + Straalboog_ + + + Radius1ElArc_ + Leave the _ symbol in translation + Radius1ElArc_ + + + Radius2ElArc_ + Leave the _ symbol in translation + Radius2ElArc_ + + + Angle1Arc_ + Leave the _ symbol in translation + Hoek1boog_ + + + Angle2Arc_ + Leave the _ symbol in translation + Hoek2boog_ + + + Angle1ElArc_ + Leave the _ symbol in translation + Angle1ElArc_ + + + Angle2ElArc_ + Leave the _ symbol in translation + Angle2ElArc_ + + + Angle1Spl_ + Leave the _ symbol in translation + Hoek1Vvk_ + + + Angle2Spl_ + Leave the _ symbol in translation + Hoek2Vvk_ + + + C1LengthSpl_ + Leave the _ symbol in translation + C1LengteVvk_ + + + C2LengthSpl_ + Leave the _ symbol in translation + C2LengteVvk_ + degTorad Converts degrees to radians -Usage: degTorad(angle θ in degrees) - degTorad +Usage: degTorad(angle θ in degrees) → returns an angle in radians +Example: degTorad(180) = 3.14159 + degTorad radTodeg Converts radians to degrees -Usage: radTodeg(angle θ in radians) - radTodeg +Usage: radTodeg(angle θ in radians) → returns an angle in degrees +Example: radTodeg(3.14159) = 180 + radTodeg sin Sine function working with radians -Usage: sin(angle θ in radians) - sin +Usage: sin(angle θ in radians) → returns a number between -1 and 1 +Example: sin(90) = 0.893997 + sin cos Cosine function working with radians -Usage: cos(angle θ in radians) - cos +Usage: cos(angle θ in radians) → returns a number between -1 and 1 +Example: cos(1) = 0.540302 + cos tan Tangent function working with radians -Usage: tan(angle θ in radians) - tan +Usage: tan(angle θ in radians) +Example: tan(1) = 1.55741 + tan asin Inverse sine function working with radians -Usage: asin(x) - asin +Usage: asin(x between -1 and 1) → returns an angle in radians +Example: asin(-1) = -1.5708 + asin acos Inverse cosine function working with radians -Usage: acos(x) - acos +Usage: acos(x between -1 and 1) → returns an angle in radians +Example: acos(0.1) = 1.47063 + acos atan Inverse tangent function working with radians -Usage: atan(x) - atan +Usage: atan(x) → returns an angle in radians +Example: atan(1) = 0.78538 + atan sinh Hyperbolic sine function -Usage: sinh(angle θ in radians) - sinh +Usage: sinh(θ) +Example: sinh(1) = 1.1752 + sinh cosh Hyperbolic cosine -Usage: cosh(angle θ in radians) - cosh +Usage: cosh(θ) → returns a number greater than or equal to 1 +Example: cosh(0) = 1 + cosh tanh Hyperbolic tangent function -Usage: tanh(angle θ in radians) - tanh +Usage: tanh(θ) → returns a number between -1 and 1 (excluded) +Example: tanh(1) = 0.761594 + tanh asinh Inverse Hyperbolic sine function -Usage: asinh(x) - asinh +Usage: asinh(x) +Example: asinh(90) = 5.19299 + asinh acosh Inverse Hyperbolic cosine function -Usage: acosh(x) - acosh +Usage: acosh(x greater than or equal to 1) +Example: acosh(2) = 1.31696 + acosh atanh Inverse Hyperbolic tangent function -Usage: atanh(x) - atanh +Usage: atanh(x between -1 and 1 (excluded)) +Example: atanh(0,99) = 2.64665 + atanh sinD Sine function working with degrees -Usage: sinD(angle θ in degrees) - sinD +Usage: sinD(angle θ in degrees) → returns a number between -1 and 1 +Example: sinD(90) = 1 + sinD cosD Cosine function working with degrees -Usage: cosD(angle θ in degrees) - cosD +Usage: cosD(angle θ in degrees) → returns a number between -1 and 1 +Example: cosD(180) = -1 + cosD tanD Tangent function working with degrees -Usage: tanD(angle θ in degrees) - tanD +Usage: tanD(angle θ in degrees) +Example: tanD(45) = 1 + tanD asinD Inverse sine function working with degrees -Usage: asinD(x) - asinD +Usage: asinD(x between -1 and 1) → returns an angle in degrees +Example: asinD(1) = 90 + asinD acosD Inverse cosine function working with degrees -Usage: acosD(x) - acosD +Usage: acosD(x between -1 and 1) → returns an angle in degrees +Example: acosD(-1) = 180 + acosD atanD Inverse tangent function working with degrees -Usage: atanD(x) - atanD +Usage: atanD(x) → returns an angle in degrees +Example: atanD(1) = 45 + atanD log2 Logarithm to the base 2 -Usage: log2(x) - log2 +Usage: log2(x greater than 0) +Example: log2(10) = 3.32193 + log2 log10 - Logarithm to the base 10 -Usage: log10(x) - log10 + Logarithm to the base 10 (same as log(x)) +Usage: log10(x greater than 0) +Example: log10(10) = 1 + log10 log Logarithm to the base 10 -Usage: log(x) - log +Usage: log(x greater than 0) +Example: log(10) = 1 + log ln Logarithm to base e (2.71828...) -Usage: ln(x) - ln +Usage: ln(x greater than 0) +Example: ln(10) = 2.30259 + ln exp - E raised to the power of x -Usage: exp(x) where e = 2.718 - exp + e raised to the power of x where e = 2.718 +Usage: exp(x) → returns a positive number +Example: exp(2) = 7.38906 + exp sqrt Square root of a value -Usage: sqrt(x) - sqrt +Usage: sqrt(x greater than or equal to 0) → returns a positive number +Example: sqrt(4) = 2 + sqrt sign Sign function -1 if x<0; 1 if x>0 -Usage: sign(x) - sign +Usage: sign(x) → returns -1, 0 or 1 +Example: sign(-3) = -1 + sign rint Round to nearest integer -Usage: rint(float x) - rint +Usage: rint(x) → returns an integer number +Example: rint(2.3) = 2 + rint abs Absolute value -Usage: abs(x) - abs +Usage: abs(x) → returns a positive number +Example: abs(-5) = 5 + abs min Min of all arguments -Usage: min(arg 1; arg 2; ... arg n) - min +Usage: min(arg 1; arg 2; ... arg n) +Example: min(2;3;4) = 2 + min max Max of all arguments -Usage: max(arg 1; arg 2; ... arg n) - max +Usage: max(arg 1; arg 2; ... arg n) +Example: max(2;3;4) = 4 + max sum Sum of all arguments -Usage: sum(arg 1; arg 2; ... arg n) - sum +Usage: sum(arg 1; arg 2; ... arg n) +Example: sum(2;3;4) = 9 + sum avg Mean value of all arguments -Usage: avg(arg 1; arg 2; ... arg n) - avg +Usage: avg(arg 1; arg 2; ... arg n) +Example: avg(2;3;4) = 3 + avg fmod Returns the floating-point remainder of x/y (rounded towards zero) -Usage: fmod(x; y) - fmod - - - M_ - Leave the _ symbol in translation - M_ - - - Variable_ - Leave the _ symbol in translation - Variable_ - - - Line_ - Leave the _ symbol in translation - Lijn_ - - - AngleLine_ - Leave the _ symbol in translation - HoekLijn_ - - - Arc_ - Leave the _ symbol in translation - Boog_ - - - ElArc_ - Leave the _ symbol in translation - EllBoog_ - - - Spl_ - Leave the _ symbol in translation - Spl_ - - - RadiusArc_ - Leave the _ symbol in translation - Straalboog_ - - - Radius1ElArc_ - Leave the _ symbol in translation - Radius1ElArc_ - - - Radius2ElArc_ - Leave the _ symbol in translation - Radius2ElArc_ - - - Angle1Arc_ - Leave the _ symbol in translation - Hoek1boog_ - - - Angle2Arc_ - Leave the _ symbol in translation - Hoek2boog_ - - - Angle1ElArc_ - Leave the _ symbol in translation - Angle1ElArc_ - - - Angle2ElArc_ - Leave the _ symbol in translation - Angle2ElArc_ - - - Angle1Spl_ - Leave the _ symbol in translation - Hoek1Vvk_ - - - Angle2Spl_ - Leave the _ symbol in translation - Hoek2Vvk_ - - - C1LengthSpl_ - Leave the _ symbol in translation - C1LengteVvk_ - - - C2LengthSpl_ - Leave the _ symbol in translation - C2LengteVvk_ +Usage: fmod(x; y) +Example: fmod(3.3;2) = 1.3 + fmod diff --git a/share/translations/seamly2d_pt_BR.ts b/share/translations/seamly2d_pt_BR.ts index 269952afefe8..1899305d3f7f 100644 --- a/share/translations/seamly2d_pt_BR.ts +++ b/share/translations/seamly2d_pt_BR.ts @@ -173,6 +173,13 @@ + + AddImage + + add image + + + AddPiece @@ -4820,10 +4827,6 @@ Do you want to download it? File may be corrupted... - - File may be corrupted or empty... - - Confirm deletion @@ -4832,16 +4835,6 @@ Do you want to download it? Do you really want to delete? - - Images will not be saved - - - - Please note that the images can not be saved and that they are not affected by the undo and redo functions in the current version of the software. - -You may want to take a screenshot of the image properties dialog before closing the software to be able to recreate identically the image when opening the software again. - - InsertNodesDialog @@ -13118,6 +13111,10 @@ load in SeamlyME as usual. Error creating or updating union pieces + + Image_name + + VPoster @@ -14921,299 +14918,333 @@ load in SeamlyME as usual. placeholder + + M_ + Leave the _ symbol in translation + + + + Variable_ + Leave the _ symbol in translation + + + + Line_ + Leave the _ symbol in translation + Linha_ + + + AngleLine_ + Leave the _ symbol in translation + LinhaDeAngulo_ + + + Arc_ + Leave the _ symbol in translation + Arco_ + + + ElArc_ + Leave the _ symbol in translation + + + + Spl_ + Leave the _ symbol in translation + + + + RadiusArc_ + Leave the _ symbol in translation + + + + Radius1ElArc_ + Leave the _ symbol in translation + + + + Radius2ElArc_ + Leave the _ symbol in translation + + + + Angle1Arc_ + Leave the _ symbol in translation + + + + Angle2Arc_ + Leave the _ symbol in translation + + + + Angle1ElArc_ + Leave the _ symbol in translation + + + + Angle2ElArc_ + Leave the _ symbol in translation + + + + Angle1Spl_ + Leave the _ symbol in translation + + + + Angle2Spl_ + Leave the _ symbol in translation + + + + C1LengthSpl_ + Leave the _ symbol in translation + + + + C2LengthSpl_ + Leave the _ symbol in translation + + degTorad Converts degrees to radians -Usage: degTorad(angle θ in degrees) - degTorad +Usage: degTorad(angle θ in degrees) → returns an angle in radians +Example: degTorad(180) = 3.14159 + degTorad radTodeg Converts radians to degrees -Usage: radTodeg(angle θ in radians) - radTodeg +Usage: radTodeg(angle θ in radians) → returns an angle in degrees +Example: radTodeg(3.14159) = 180 + radTodeg sin Sine function working with radians -Usage: sin(angle θ in radians) - sin +Usage: sin(angle θ in radians) → returns a number between -1 and 1 +Example: sin(90) = 0.893997 + sin cos Cosine function working with radians -Usage: cos(angle θ in radians) - cos +Usage: cos(angle θ in radians) → returns a number between -1 and 1 +Example: cos(1) = 0.540302 + cos tan Tangent function working with radians -Usage: tan(angle θ in radians) - tan +Usage: tan(angle θ in radians) +Example: tan(1) = 1.55741 + tan asin Inverse sine function working with radians -Usage: asin(x) - asin +Usage: asin(x between -1 and 1) → returns an angle in radians +Example: asin(-1) = -1.5708 + asin acos Inverse cosine function working with radians -Usage: acos(x) - acos +Usage: acos(x between -1 and 1) → returns an angle in radians +Example: acos(0.1) = 1.47063 + acos atan Inverse tangent function working with radians -Usage: atan(x) - atan +Usage: atan(x) → returns an angle in radians +Example: atan(1) = 0.78538 + atan sinh Hyperbolic sine function -Usage: sinh(angle θ in radians) - sinh +Usage: sinh(θ) +Example: sinh(1) = 1.1752 + sinh cosh Hyperbolic cosine -Usage: cosh(angle θ in radians) - cosh +Usage: cosh(θ) → returns a number greater than or equal to 1 +Example: cosh(0) = 1 + cosh tanh Hyperbolic tangent function -Usage: tanh(angle θ in radians) - tanh +Usage: tanh(θ) → returns a number between -1 and 1 (excluded) +Example: tanh(1) = 0.761594 + tanh asinh Inverse Hyperbolic sine function -Usage: asinh(x) - asinh +Usage: asinh(x) +Example: asinh(90) = 5.19299 + asinh acosh Inverse Hyperbolic cosine function -Usage: acosh(x) - acosh +Usage: acosh(x greater than or equal to 1) +Example: acosh(2) = 1.31696 + acosh atanh Inverse Hyperbolic tangent function -Usage: atanh(x) - atanh +Usage: atanh(x between -1 and 1 (excluded)) +Example: atanh(0,99) = 2.64665 + atanh sinD Sine function working with degrees -Usage: sinD(angle θ in degrees) - sinD +Usage: sinD(angle θ in degrees) → returns a number between -1 and 1 +Example: sinD(90) = 1 + sinD cosD Cosine function working with degrees -Usage: cosD(angle θ in degrees) - cosD +Usage: cosD(angle θ in degrees) → returns a number between -1 and 1 +Example: cosD(180) = -1 + cosD tanD Tangent function working with degrees -Usage: tanD(angle θ in degrees) - tanD +Usage: tanD(angle θ in degrees) +Example: tanD(45) = 1 + tanD asinD Inverse sine function working with degrees -Usage: asinD(x) - asinD +Usage: asinD(x between -1 and 1) → returns an angle in degrees +Example: asinD(1) = 90 + asinD acosD Inverse cosine function working with degrees -Usage: acosD(x) - acosD +Usage: acosD(x between -1 and 1) → returns an angle in degrees +Example: acosD(-1) = 180 + acosD atanD Inverse tangent function working with degrees -Usage: atanD(x) - atanD +Usage: atanD(x) → returns an angle in degrees +Example: atanD(1) = 45 + atanD log2 Logarithm to the base 2 -Usage: log2(x) - log2 +Usage: log2(x greater than 0) +Example: log2(10) = 3.32193 + log2 log10 - Logarithm to the base 10 -Usage: log10(x) - log10 + Logarithm to the base 10 (same as log(x)) +Usage: log10(x greater than 0) +Example: log10(10) = 1 + log10 log Logarithm to the base 10 -Usage: log(x) - log +Usage: log(x greater than 0) +Example: log(10) = 1 + log ln Logarithm to base e (2.71828...) -Usage: ln(x) - ln +Usage: ln(x greater than 0) +Example: ln(10) = 2.30259 + ln exp - E raised to the power of x -Usage: exp(x) where e = 2.718 - exp + e raised to the power of x where e = 2.718 +Usage: exp(x) → returns a positive number +Example: exp(2) = 7.38906 + exp sqrt Square root of a value -Usage: sqrt(x) - sqrt +Usage: sqrt(x greater than or equal to 0) → returns a positive number +Example: sqrt(4) = 2 + sqrt sign Sign function -1 if x<0; 1 if x>0 -Usage: sign(x) - sign +Usage: sign(x) → returns -1, 0 or 1 +Example: sign(-3) = -1 + sign rint Round to nearest integer -Usage: rint(float x) - rint +Usage: rint(x) → returns an integer number +Example: rint(2.3) = 2 + rint abs Absolute value -Usage: abs(x) - abs +Usage: abs(x) → returns a positive number +Example: abs(-5) = 5 + abs min Min of all arguments -Usage: min(arg 1; arg 2; ... arg n) - min +Usage: min(arg 1; arg 2; ... arg n) +Example: min(2;3;4) = 2 + min max Max of all arguments -Usage: max(arg 1; arg 2; ... arg n) - max +Usage: max(arg 1; arg 2; ... arg n) +Example: max(2;3;4) = 4 + max sum Sum of all arguments -Usage: sum(arg 1; arg 2; ... arg n) - sum +Usage: sum(arg 1; arg 2; ... arg n) +Example: sum(2;3;4) = 9 + sum avg Mean value of all arguments -Usage: avg(arg 1; arg 2; ... arg n) - avg +Usage: avg(arg 1; arg 2; ... arg n) +Example: avg(2;3;4) = 3 + avg fmod Returns the floating-point remainder of x/y (rounded towards zero) -Usage: fmod(x; y) - fmod - - - M_ - Leave the _ symbol in translation - - - - Variable_ - Leave the _ symbol in translation - - - - Line_ - Leave the _ symbol in translation - Linha_ - - - AngleLine_ - Leave the _ symbol in translation - LinhaDeAngulo_ - - - Arc_ - Leave the _ symbol in translation - Arco_ - - - ElArc_ - Leave the _ symbol in translation - - - - Spl_ - Leave the _ symbol in translation - - - - RadiusArc_ - Leave the _ symbol in translation - - - - Radius1ElArc_ - Leave the _ symbol in translation - - - - Radius2ElArc_ - Leave the _ symbol in translation - - - - Angle1Arc_ - Leave the _ symbol in translation - - - - Angle2Arc_ - Leave the _ symbol in translation - - - - Angle1ElArc_ - Leave the _ symbol in translation - - - - Angle2ElArc_ - Leave the _ symbol in translation - - - - Angle1Spl_ - Leave the _ symbol in translation - - - - Angle2Spl_ - Leave the _ symbol in translation - - - - C1LengthSpl_ - Leave the _ symbol in translation - - - - C2LengthSpl_ - Leave the _ symbol in translation - +Usage: fmod(x; y) +Example: fmod(3.3;2) = 1.3 + fmod diff --git a/share/translations/seamly2d_ro_RO.ts b/share/translations/seamly2d_ro_RO.ts index 44d3c17120ec..58ccf2c40f96 100644 --- a/share/translations/seamly2d_ro_RO.ts +++ b/share/translations/seamly2d_ro_RO.ts @@ -173,6 +173,13 @@ + + AddImage + + add image + + + AddPiece @@ -4820,10 +4827,6 @@ Do you want to download it? File may be corrupted... - - File may be corrupted or empty... - - Confirm deletion @@ -4832,16 +4835,6 @@ Do you want to download it? Do you really want to delete? - - Images will not be saved - - - - Please note that the images can not be saved and that they are not affected by the undo and redo functions in the current version of the software. - -You may want to take a screenshot of the image properties dialog before closing the software to be able to recreate identically the image when opening the software again. - - InsertNodesDialog @@ -13118,6 +13111,10 @@ load in SeamlyME as usual. Error creating or updating union pieces + + Image_name + + VPoster @@ -14921,298 +14918,332 @@ load in SeamlyME as usual. placeholder + + M_ + Leave the _ symbol in translation + + + + Variable_ + Leave the _ symbol in translation + + + + Line_ + Leave the _ symbol in translation + + + + AngleLine_ + Leave the _ symbol in translation + + + + Arc_ + Leave the _ symbol in translation + + + + ElArc_ + Leave the _ symbol in translation + + + + Spl_ + Leave the _ symbol in translation + + + + RadiusArc_ + Leave the _ symbol in translation + + + + Radius1ElArc_ + Leave the _ symbol in translation + + + + Radius2ElArc_ + Leave the _ symbol in translation + + + + Angle1Arc_ + Leave the _ symbol in translation + + + + Angle2Arc_ + Leave the _ symbol in translation + + + + Angle1ElArc_ + Leave the _ symbol in translation + + + + Angle2ElArc_ + Leave the _ symbol in translation + + + + Angle1Spl_ + Leave the _ symbol in translation + + + + Angle2Spl_ + Leave the _ symbol in translation + + + + C1LengthSpl_ + Leave the _ symbol in translation + + + + C2LengthSpl_ + Leave the _ symbol in translation + + degTorad Converts degrees to radians -Usage: degTorad(angle θ in degrees) +Usage: degTorad(angle θ in degrees) → returns an angle in radians +Example: degTorad(180) = 3.14159 radTodeg Converts radians to degrees -Usage: radTodeg(angle θ in radians) +Usage: radTodeg(angle θ in radians) → returns an angle in degrees +Example: radTodeg(3.14159) = 180 sin Sine function working with radians -Usage: sin(angle θ in radians) +Usage: sin(angle θ in radians) → returns a number between -1 and 1 +Example: sin(90) = 0.893997 sin cos Cosine function working with radians -Usage: cos(angle θ in radians) +Usage: cos(angle θ in radians) → returns a number between -1 and 1 +Example: cos(1) = 0.540302 cos tan Tangent function working with radians -Usage: tan(angle θ in radians) +Usage: tan(angle θ in radians) +Example: tan(1) = 1.55741 tan asin Inverse sine function working with radians -Usage: asin(x) +Usage: asin(x between -1 and 1) → returns an angle in radians +Example: asin(-1) = -1.5708 asin acos Inverse cosine function working with radians -Usage: acos(x) +Usage: acos(x between -1 and 1) → returns an angle in radians +Example: acos(0.1) = 1.47063 acos atan Inverse tangent function working with radians -Usage: atan(x) +Usage: atan(x) → returns an angle in radians +Example: atan(1) = 0.78538 atan sinh Hyperbolic sine function -Usage: sinh(angle θ in radians) +Usage: sinh(θ) +Example: sinh(1) = 1.1752 sinh cosh Hyperbolic cosine -Usage: cosh(angle θ in radians) +Usage: cosh(θ) → returns a number greater than or equal to 1 +Example: cosh(0) = 1 cosh tanh Hyperbolic tangent function -Usage: tanh(angle θ in radians) +Usage: tanh(θ) → returns a number between -1 and 1 (excluded) +Example: tanh(1) = 0.761594 tanh asinh Inverse Hyperbolic sine function -Usage: asinh(x) +Usage: asinh(x) +Example: asinh(90) = 5.19299 asinh acosh Inverse Hyperbolic cosine function -Usage: acosh(x) +Usage: acosh(x greater than or equal to 1) +Example: acosh(2) = 1.31696 acosh atanh Inverse Hyperbolic tangent function -Usage: atanh(x) +Usage: atanh(x between -1 and 1 (excluded)) +Example: atanh(0,99) = 2.64665 atanh sinD Sine function working with degrees -Usage: sinD(angle θ in degrees) +Usage: sinD(angle θ in degrees) → returns a number between -1 and 1 +Example: sinD(90) = 1 cosD Cosine function working with degrees -Usage: cosD(angle θ in degrees) +Usage: cosD(angle θ in degrees) → returns a number between -1 and 1 +Example: cosD(180) = -1 tanD Tangent function working with degrees -Usage: tanD(angle θ in degrees) +Usage: tanD(angle θ in degrees) +Example: tanD(45) = 1 asinD Inverse sine function working with degrees -Usage: asinD(x) +Usage: asinD(x between -1 and 1) → returns an angle in degrees +Example: asinD(1) = 90 acosD Inverse cosine function working with degrees -Usage: acosD(x) +Usage: acosD(x between -1 and 1) → returns an angle in degrees +Example: acosD(-1) = 180 atanD Inverse tangent function working with degrees -Usage: atanD(x) +Usage: atanD(x) → returns an angle in degrees +Example: atanD(1) = 45 log2 Logarithm to the base 2 -Usage: log2(x) +Usage: log2(x greater than 0) +Example: log2(10) = 3.32193 log2 log10 - Logarithm to the base 10 -Usage: log10(x) + Logarithm to the base 10 (same as log(x)) +Usage: log10(x greater than 0) +Example: log10(10) = 1 log10 log Logarithm to the base 10 -Usage: log(x) +Usage: log(x greater than 0) +Example: log(10) = 1 log ln Logarithm to base e (2.71828...) -Usage: ln(x) +Usage: ln(x greater than 0) +Example: ln(10) = 2.30259 ln exp - E raised to the power of x -Usage: exp(x) where e = 2.718 + e raised to the power of x where e = 2.718 +Usage: exp(x) → returns a positive number +Example: exp(2) = 7.38906 exp sqrt Square root of a value -Usage: sqrt(x) +Usage: sqrt(x greater than or equal to 0) → returns a positive number +Example: sqrt(4) = 2 sqrt sign Sign function -1 if x<0; 1 if x>0 -Usage: sign(x) +Usage: sign(x) → returns -1, 0 or 1 +Example: sign(-3) = -1 sign rint Round to nearest integer -Usage: rint(float x) +Usage: rint(x) → returns an integer number +Example: rint(2.3) = 2 rint abs Absolute value -Usage: abs(x) +Usage: abs(x) → returns a positive number +Example: abs(-5) = 5 abs min Min of all arguments -Usage: min(arg 1; arg 2; ... arg n) +Usage: min(arg 1; arg 2; ... arg n) +Example: min(2;3;4) = 2 min max Max of all arguments -Usage: max(arg 1; arg 2; ... arg n) +Usage: max(arg 1; arg 2; ... arg n) +Example: max(2;3;4) = 4 max sum Sum of all arguments -Usage: sum(arg 1; arg 2; ... arg n) +Usage: sum(arg 1; arg 2; ... arg n) +Example: sum(2;3;4) = 9 sum avg Mean value of all arguments -Usage: avg(arg 1; arg 2; ... arg n) +Usage: avg(arg 1; arg 2; ... arg n) +Example: avg(2;3;4) = 3 avg fmod Returns the floating-point remainder of x/y (rounded towards zero) -Usage: fmod(x; y) - - - - M_ - Leave the _ symbol in translation - - - - Variable_ - Leave the _ symbol in translation - - - - Line_ - Leave the _ symbol in translation - - - - AngleLine_ - Leave the _ symbol in translation - - - - Arc_ - Leave the _ symbol in translation - - - - ElArc_ - Leave the _ symbol in translation - - - - Spl_ - Leave the _ symbol in translation - - - - RadiusArc_ - Leave the _ symbol in translation - - - - Radius1ElArc_ - Leave the _ symbol in translation - - - - Radius2ElArc_ - Leave the _ symbol in translation - - - - Angle1Arc_ - Leave the _ symbol in translation - - - - Angle2Arc_ - Leave the _ symbol in translation - - - - Angle1ElArc_ - Leave the _ symbol in translation - - - - Angle2ElArc_ - Leave the _ symbol in translation - - - - Angle1Spl_ - Leave the _ symbol in translation - - - - Angle2Spl_ - Leave the _ symbol in translation - - - - C1LengthSpl_ - Leave the _ symbol in translation - - - - C2LengthSpl_ - Leave the _ symbol in translation +Usage: fmod(x; y) +Example: fmod(3.3;2) = 1.3 diff --git a/share/translations/seamly2d_ru_RU.ts b/share/translations/seamly2d_ru_RU.ts index eed331066ddf..919a934d1307 100644 --- a/share/translations/seamly2d_ru_RU.ts +++ b/share/translations/seamly2d_ru_RU.ts @@ -173,6 +173,13 @@ Добавить объект в группу + + AddImage + + add image + + + AddPiece @@ -4849,10 +4856,6 @@ Do you want to download it? File may be corrupted... - - File may be corrupted or empty... - - Confirm deletion Подтвердите удаление @@ -4861,16 +4864,6 @@ Do you want to download it? Do you really want to delete? Вы точно хотите удалить? - - Images will not be saved - - - - Please note that the images can not be saved and that they are not affected by the undo and redo functions in the current version of the software. - -You may want to take a screenshot of the image properties dialog before closing the software to be able to recreate identically the image when opening the software again. - - InsertNodesDialog @@ -13163,6 +13156,10 @@ load in SeamlyME as usual. Error creating or updating union pieces Ошибка создания или обновления соединения деталей + + Image_name + + VPoster @@ -14971,299 +14968,333 @@ load in SeamlyME as usual. placeholder сНа Сгиб + + M_ + Leave the _ symbol in translation + М_ + + + Variable_ + Leave the _ symbol in translation + Переменная_ + + + Line_ + Leave the _ symbol in translation + Линия_ + + + AngleLine_ + Leave the _ symbol in translation + УголЛинии_ + + + Arc_ + Leave the _ symbol in translation + Дуга_ + + + ElArc_ + Leave the _ symbol in translation + Дуга_ + + + Spl_ + Leave the _ symbol in translation + Спл_ + + + RadiusArc_ + Leave the _ symbol in translation + РадиусДуги_ + + + Radius1ElArc_ + Leave the _ symbol in translation + Радиус1Дуги_ + + + Radius2ElArc_ + Leave the _ symbol in translation + Радиус2Дуги_ + + + Angle1Arc_ + Leave the _ symbol in translation + Улог1Дуги_ + + + Angle2Arc_ + Leave the _ symbol in translation + Угол2Дуги_ + + + Angle1ElArc_ + Leave the _ symbol in translation + Улог1Дуги_ + + + Angle2ElArc_ + Leave the _ symbol in translation + Угол2Дуги_ + + + Angle1Spl_ + Leave the _ symbol in translation + Угол1Спл_ + + + Angle2Spl_ + Leave the _ symbol in translation + Угол2Спл_ + + + C1LengthSpl_ + Leave the _ symbol in translation + С1ДлинаСпл_ + + + C2LengthSpl_ + Leave the _ symbol in translation + С2ДлинаСпл_ + degTorad Converts degrees to radians -Usage: degTorad(angle θ in degrees) - degTorad +Usage: degTorad(angle θ in degrees) → returns an angle in radians +Example: degTorad(180) = 3.14159 + degTorad radTodeg Converts radians to degrees -Usage: radTodeg(angle θ in radians) - radTodeg +Usage: radTodeg(angle θ in radians) → returns an angle in degrees +Example: radTodeg(3.14159) = 180 + radTodeg sin Sine function working with radians -Usage: sin(angle θ in radians) - sin +Usage: sin(angle θ in radians) → returns a number between -1 and 1 +Example: sin(90) = 0.893997 + sin cos Cosine function working with radians -Usage: cos(angle θ in radians) - cos +Usage: cos(angle θ in radians) → returns a number between -1 and 1 +Example: cos(1) = 0.540302 + cos tan Tangent function working with radians -Usage: tan(angle θ in radians) - tan +Usage: tan(angle θ in radians) +Example: tan(1) = 1.55741 + tan asin Inverse sine function working with radians -Usage: asin(x) - asin +Usage: asin(x between -1 and 1) → returns an angle in radians +Example: asin(-1) = -1.5708 + asin acos Inverse cosine function working with radians -Usage: acos(x) - acos +Usage: acos(x between -1 and 1) → returns an angle in radians +Example: acos(0.1) = 1.47063 + acos atan Inverse tangent function working with radians -Usage: atan(x) - atan +Usage: atan(x) → returns an angle in radians +Example: atan(1) = 0.78538 + atan sinh Hyperbolic sine function -Usage: sinh(angle θ in radians) - sinh +Usage: sinh(θ) +Example: sinh(1) = 1.1752 + sinh cosh Hyperbolic cosine -Usage: cosh(angle θ in radians) - cosh +Usage: cosh(θ) → returns a number greater than or equal to 1 +Example: cosh(0) = 1 + cosh tanh Hyperbolic tangent function -Usage: tanh(angle θ in radians) - tanh +Usage: tanh(θ) → returns a number between -1 and 1 (excluded) +Example: tanh(1) = 0.761594 + tanh asinh Inverse Hyperbolic sine function -Usage: asinh(x) - asinh +Usage: asinh(x) +Example: asinh(90) = 5.19299 + asinh acosh Inverse Hyperbolic cosine function -Usage: acosh(x) - acosh +Usage: acosh(x greater than or equal to 1) +Example: acosh(2) = 1.31696 + acosh atanh Inverse Hyperbolic tangent function -Usage: atanh(x) - atanh +Usage: atanh(x between -1 and 1 (excluded)) +Example: atanh(0,99) = 2.64665 + atanh sinD Sine function working with degrees -Usage: sinD(angle θ in degrees) - sinD +Usage: sinD(angle θ in degrees) → returns a number between -1 and 1 +Example: sinD(90) = 1 + sinD cosD Cosine function working with degrees -Usage: cosD(angle θ in degrees) - cosD +Usage: cosD(angle θ in degrees) → returns a number between -1 and 1 +Example: cosD(180) = -1 + cosD tanD Tangent function working with degrees -Usage: tanD(angle θ in degrees) - tanD +Usage: tanD(angle θ in degrees) +Example: tanD(45) = 1 + tanD asinD Inverse sine function working with degrees -Usage: asinD(x) - asinD +Usage: asinD(x between -1 and 1) → returns an angle in degrees +Example: asinD(1) = 90 + asinD acosD Inverse cosine function working with degrees -Usage: acosD(x) - acosD +Usage: acosD(x between -1 and 1) → returns an angle in degrees +Example: acosD(-1) = 180 + acosD atanD Inverse tangent function working with degrees -Usage: atanD(x) - atanD +Usage: atanD(x) → returns an angle in degrees +Example: atanD(1) = 45 + atanD log2 Logarithm to the base 2 -Usage: log2(x) - log2 +Usage: log2(x greater than 0) +Example: log2(10) = 3.32193 + log2 log10 - Logarithm to the base 10 -Usage: log10(x) - log10 + Logarithm to the base 10 (same as log(x)) +Usage: log10(x greater than 0) +Example: log10(10) = 1 + log10 log Logarithm to the base 10 -Usage: log(x) - log +Usage: log(x greater than 0) +Example: log(10) = 1 + log ln Logarithm to base e (2.71828...) -Usage: ln(x) - ln +Usage: ln(x greater than 0) +Example: ln(10) = 2.30259 + ln exp - E raised to the power of x -Usage: exp(x) where e = 2.718 - exp + e raised to the power of x where e = 2.718 +Usage: exp(x) → returns a positive number +Example: exp(2) = 7.38906 + exp sqrt Square root of a value -Usage: sqrt(x) - sqrt +Usage: sqrt(x greater than or equal to 0) → returns a positive number +Example: sqrt(4) = 2 + sqrt sign Sign function -1 if x<0; 1 if x>0 -Usage: sign(x) - sign +Usage: sign(x) → returns -1, 0 or 1 +Example: sign(-3) = -1 + sign rint Round to nearest integer -Usage: rint(float x) - rint +Usage: rint(x) → returns an integer number +Example: rint(2.3) = 2 + rint abs Absolute value -Usage: abs(x) - abs +Usage: abs(x) → returns a positive number +Example: abs(-5) = 5 + abs min Min of all arguments -Usage: min(arg 1; arg 2; ... arg n) - min +Usage: min(arg 1; arg 2; ... arg n) +Example: min(2;3;4) = 2 + min max Max of all arguments -Usage: max(arg 1; arg 2; ... arg n) - max +Usage: max(arg 1; arg 2; ... arg n) +Example: max(2;3;4) = 4 + max sum Sum of all arguments -Usage: sum(arg 1; arg 2; ... arg n) - sum +Usage: sum(arg 1; arg 2; ... arg n) +Example: sum(2;3;4) = 9 + sum avg Mean value of all arguments -Usage: avg(arg 1; arg 2; ... arg n) - avg +Usage: avg(arg 1; arg 2; ... arg n) +Example: avg(2;3;4) = 3 + avg fmod Returns the floating-point remainder of x/y (rounded towards zero) -Usage: fmod(x; y) - fmod - - - M_ - Leave the _ symbol in translation - М_ - - - Variable_ - Leave the _ symbol in translation - Переменная_ - - - Line_ - Leave the _ symbol in translation - Линия_ - - - AngleLine_ - Leave the _ symbol in translation - УголЛинии_ - - - Arc_ - Leave the _ symbol in translation - Дуга_ - - - ElArc_ - Leave the _ symbol in translation - Дуга_ - - - Spl_ - Leave the _ symbol in translation - Спл_ - - - RadiusArc_ - Leave the _ symbol in translation - РадиусДуги_ - - - Radius1ElArc_ - Leave the _ symbol in translation - Радиус1Дуги_ - - - Radius2ElArc_ - Leave the _ symbol in translation - Радиус2Дуги_ - - - Angle1Arc_ - Leave the _ symbol in translation - Улог1Дуги_ - - - Angle2Arc_ - Leave the _ symbol in translation - Угол2Дуги_ - - - Angle1ElArc_ - Leave the _ symbol in translation - Улог1Дуги_ - - - Angle2ElArc_ - Leave the _ symbol in translation - Угол2Дуги_ - - - Angle1Spl_ - Leave the _ symbol in translation - Угол1Спл_ - - - Angle2Spl_ - Leave the _ symbol in translation - Угол2Спл_ - - - C1LengthSpl_ - Leave the _ symbol in translation - С1ДлинаСпл_ - - - C2LengthSpl_ - Leave the _ symbol in translation - С2ДлинаСпл_ +Usage: fmod(x; y) +Example: fmod(3.3;2) = 1.3 + fmod diff --git a/share/translations/seamly2d_uk_UA.ts b/share/translations/seamly2d_uk_UA.ts index 4f6dfe56501b..62e12c952dd0 100644 --- a/share/translations/seamly2d_uk_UA.ts +++ b/share/translations/seamly2d_uk_UA.ts @@ -173,6 +173,13 @@ + + AddImage + + add image + + + AddPiece @@ -4820,10 +4827,6 @@ Do you want to download it? File may be corrupted... - - File may be corrupted or empty... - - Confirm deletion Підтвердіть видалення @@ -4832,16 +4835,6 @@ Do you want to download it? Do you really want to delete? Ви дійсно хочете видалити? - - Images will not be saved - - - - Please note that the images can not be saved and that they are not affected by the undo and redo functions in the current version of the software. - -You may want to take a screenshot of the image properties dialog before closing the software to be able to recreate identically the image when opening the software again. - - InsertNodesDialog @@ -13123,6 +13116,10 @@ load in SeamlyME as usual. Error creating or updating union pieces + + Image_name + + VPoster @@ -14926,300 +14923,334 @@ load in SeamlyME as usual. placeholder + + M_ + Leave the _ symbol in translation + М_ + + + Variable_ + Leave the _ symbol in translation + + + + Line_ + Leave the _ symbol in translation + Лінія_ + + + AngleLine_ + Leave the _ symbol in translation + КутЛінії_ + + + Arc_ + Leave the _ symbol in translation + Дуга_ + + + ElArc_ + Leave the _ symbol in translation + + + + Spl_ + Leave the _ symbol in translation + Спл_ + + + RadiusArc_ + Leave the _ symbol in translation + РадіусДуги_ + + + Radius1ElArc_ + Leave the _ symbol in translation + + + + Radius2ElArc_ + Leave the _ symbol in translation + + + + Angle1Arc_ + Leave the _ symbol in translation + Кут1Дуги_ + + + Angle2Arc_ + Leave the _ symbol in translation + Кут2Дуги_ + + + Angle1ElArc_ + Leave the _ symbol in translation + + + + Angle2ElArc_ + Leave the _ symbol in translation + + + + Angle1Spl_ + Leave the _ symbol in translation + Кут1Спл_ + + + Angle2Spl_ + Leave the _ symbol in translation + Кут2Спл_ + + + C1LengthSpl_ + Leave the _ symbol in translation + К1ДовжинаСпл_ + + + C2LengthSpl_ + Leave the _ symbol in translation + К2ДовжинаСпл_ + degTorad Converts degrees to radians -Usage: degTorad(angle θ in degrees) +Usage: degTorad(angle θ in degrees) → returns an angle in radians +Example: degTorad(180) = 3.14159 radTodeg Converts radians to degrees -Usage: radTodeg(angle θ in radians) +Usage: radTodeg(angle θ in radians) → returns an angle in degrees +Example: radTodeg(3.14159) = 180 sin Sine function working with radians -Usage: sin(angle θ in radians) +Usage: sin(angle θ in radians) → returns a number between -1 and 1 +Example: sin(90) = 0.893997 sin cos Cosine function working with radians -Usage: cos(angle θ in radians) +Usage: cos(angle θ in radians) → returns a number between -1 and 1 +Example: cos(1) = 0.540302 cos tan Tangent function working with radians -Usage: tan(angle θ in radians) +Usage: tan(angle θ in radians) +Example: tan(1) = 1.55741 tan asin Inverse sine function working with radians -Usage: asin(x) +Usage: asin(x between -1 and 1) → returns an angle in radians +Example: asin(-1) = -1.5708 asin acos Inverse cosine function working with radians -Usage: acos(x) +Usage: acos(x between -1 and 1) → returns an angle in radians +Example: acos(0.1) = 1.47063 acos atan Inverse tangent function working with radians -Usage: atan(x) +Usage: atan(x) → returns an angle in radians +Example: atan(1) = 0.78538 atan sinh Hyperbolic sine function -Usage: sinh(angle θ in radians) +Usage: sinh(θ) +Example: sinh(1) = 1.1752 sinh cosh Hyperbolic cosine -Usage: cosh(angle θ in radians) +Usage: cosh(θ) → returns a number greater than or equal to 1 +Example: cosh(0) = 1 cosh tanh Hyperbolic tangent function -Usage: tanh(angle θ in radians) +Usage: tanh(θ) → returns a number between -1 and 1 (excluded) +Example: tanh(1) = 0.761594 tanh asinh Inverse Hyperbolic sine function -Usage: asinh(x) +Usage: asinh(x) +Example: asinh(90) = 5.19299 acosh Inverse Hyperbolic cosine function -Usage: acosh(x) +Usage: acosh(x greater than or equal to 1) +Example: acosh(2) = 1.31696 acosh atanh Inverse Hyperbolic tangent function -Usage: atanh(x) +Usage: atanh(x between -1 and 1 (excluded)) +Example: atanh(0,99) = 2.64665 atanh sinD Sine function working with degrees -Usage: sinD(angle θ in degrees) +Usage: sinD(angle θ in degrees) → returns a number between -1 and 1 +Example: sinD(90) = 1 cosD Cosine function working with degrees -Usage: cosD(angle θ in degrees) +Usage: cosD(angle θ in degrees) → returns a number between -1 and 1 +Example: cosD(180) = -1 tanD Tangent function working with degrees -Usage: tanD(angle θ in degrees) +Usage: tanD(angle θ in degrees) +Example: tanD(45) = 1 asinD Inverse sine function working with degrees -Usage: asinD(x) +Usage: asinD(x between -1 and 1) → returns an angle in degrees +Example: asinD(1) = 90 acosD Inverse cosine function working with degrees -Usage: acosD(x) +Usage: acosD(x between -1 and 1) → returns an angle in degrees +Example: acosD(-1) = 180 atanD Inverse tangent function working with degrees -Usage: atanD(x) - atanD +Usage: atanD(x) → returns an angle in degrees +Example: atanD(1) = 45 + atanD log2 Logarithm to the base 2 -Usage: log2(x) - log2 +Usage: log2(x greater than 0) +Example: log2(10) = 3.32193 + log2 log10 - Logarithm to the base 10 -Usage: log10(x) + Logarithm to the base 10 (same as log(x)) +Usage: log10(x greater than 0) +Example: log10(10) = 1 log10 log Logarithm to the base 10 -Usage: log(x) +Usage: log(x greater than 0) +Example: log(10) = 1 log ln Logarithm to base e (2.71828...) -Usage: ln(x) +Usage: ln(x greater than 0) +Example: ln(10) = 2.30259 ln exp - E raised to the power of x -Usage: exp(x) where e = 2.718 + e raised to the power of x where e = 2.718 +Usage: exp(x) → returns a positive number +Example: exp(2) = 7.38906 exp sqrt Square root of a value -Usage: sqrt(x) +Usage: sqrt(x greater than or equal to 0) → returns a positive number +Example: sqrt(4) = 2 sqrt sign Sign function -1 if x<0; 1 if x>0 -Usage: sign(x) +Usage: sign(x) → returns -1, 0 or 1 +Example: sign(-3) = -1 sign rint Round to nearest integer -Usage: rint(float x) +Usage: rint(x) → returns an integer number +Example: rint(2.3) = 2 rint abs Absolute value -Usage: abs(x) +Usage: abs(x) → returns a positive number +Example: abs(-5) = 5 abs min Min of all arguments -Usage: min(arg 1; arg 2; ... arg n) +Usage: min(arg 1; arg 2; ... arg n) +Example: min(2;3;4) = 2 max Max of all arguments -Usage: max(arg 1; arg 2; ... arg n) +Usage: max(arg 1; arg 2; ... arg n) +Example: max(2;3;4) = 4 max sum Sum of all arguments -Usage: sum(arg 1; arg 2; ... arg n) +Usage: sum(arg 1; arg 2; ... arg n) +Example: sum(2;3;4) = 9 sum avg Mean value of all arguments -Usage: avg(arg 1; arg 2; ... arg n) +Usage: avg(arg 1; arg 2; ... arg n) +Example: avg(2;3;4) = 3 avg fmod Returns the floating-point remainder of x/y (rounded towards zero) -Usage: fmod(x; y) +Usage: fmod(x; y) +Example: fmod(3.3;2) = 1.3 fmod - - M_ - Leave the _ symbol in translation - М_ - - - Variable_ - Leave the _ symbol in translation - - - - Line_ - Leave the _ symbol in translation - Лінія_ - - - AngleLine_ - Leave the _ symbol in translation - КутЛінії_ - - - Arc_ - Leave the _ symbol in translation - Дуга_ - - - ElArc_ - Leave the _ symbol in translation - - - - Spl_ - Leave the _ symbol in translation - Спл_ - - - RadiusArc_ - Leave the _ symbol in translation - РадіусДуги_ - - - Radius1ElArc_ - Leave the _ symbol in translation - - - - Radius2ElArc_ - Leave the _ symbol in translation - - - - Angle1Arc_ - Leave the _ symbol in translation - Кут1Дуги_ - - - Angle2Arc_ - Leave the _ symbol in translation - Кут2Дуги_ - - - Angle1ElArc_ - Leave the _ symbol in translation - - - - Angle2ElArc_ - Leave the _ symbol in translation - - - - Angle1Spl_ - Leave the _ symbol in translation - Кут1Спл_ - - - Angle2Spl_ - Leave the _ symbol in translation - Кут2Спл_ - - - C1LengthSpl_ - Leave the _ symbol in translation - К1ДовжинаСпл_ - - - C2LengthSpl_ - Leave the _ symbol in translation - К2ДовжинаСпл_ - VisToolCubicBezierPath diff --git a/share/translations/seamly2d_zh_CN.ts b/share/translations/seamly2d_zh_CN.ts index 2ab6418878e5..a3dcc0101b21 100644 --- a/share/translations/seamly2d_zh_CN.ts +++ b/share/translations/seamly2d_zh_CN.ts @@ -173,6 +173,13 @@ + + AddImage + + add image + + + AddPiece @@ -4820,10 +4827,6 @@ Do you want to download it? File may be corrupted... - - File may be corrupted or empty... - - Confirm deletion @@ -4832,16 +4835,6 @@ Do you want to download it? Do you really want to delete? - - Images will not be saved - - - - Please note that the images can not be saved and that they are not affected by the undo and redo functions in the current version of the software. - -You may want to take a screenshot of the image properties dialog before closing the software to be able to recreate identically the image when opening the software again. - - InsertNodesDialog @@ -13118,6 +13111,10 @@ load in SeamlyME as usual. Error creating or updating union pieces + + Image_name + + VPoster @@ -14921,298 +14918,332 @@ load in SeamlyME as usual. placeholder + + M_ + Leave the _ symbol in translation + + + + Variable_ + Leave the _ symbol in translation + + + + Line_ + Leave the _ symbol in translation + + + + AngleLine_ + Leave the _ symbol in translation + + + + Arc_ + Leave the _ symbol in translation + + + + ElArc_ + Leave the _ symbol in translation + + + + Spl_ + Leave the _ symbol in translation + + + + RadiusArc_ + Leave the _ symbol in translation + + + + Radius1ElArc_ + Leave the _ symbol in translation + + + + Radius2ElArc_ + Leave the _ symbol in translation + + + + Angle1Arc_ + Leave the _ symbol in translation + + + + Angle2Arc_ + Leave the _ symbol in translation + + + + Angle1ElArc_ + Leave the _ symbol in translation + + + + Angle2ElArc_ + Leave the _ symbol in translation + + + + Angle1Spl_ + Leave the _ symbol in translation + + + + Angle2Spl_ + Leave the _ symbol in translation + + + + C1LengthSpl_ + Leave the _ symbol in translation + + + + C2LengthSpl_ + Leave the _ symbol in translation + + degTorad Converts degrees to radians -Usage: degTorad(angle θ in degrees) +Usage: degTorad(angle θ in degrees) → returns an angle in radians +Example: degTorad(180) = 3.14159 radTodeg Converts radians to degrees -Usage: radTodeg(angle θ in radians) +Usage: radTodeg(angle θ in radians) → returns an angle in degrees +Example: radTodeg(3.14159) = 180 sin Sine function working with radians -Usage: sin(angle θ in radians) +Usage: sin(angle θ in radians) → returns a number between -1 and 1 +Example: sin(90) = 0.893997 cos Cosine function working with radians -Usage: cos(angle θ in radians) +Usage: cos(angle θ in radians) → returns a number between -1 and 1 +Example: cos(1) = 0.540302 tan Tangent function working with radians -Usage: tan(angle θ in radians) +Usage: tan(angle θ in radians) +Example: tan(1) = 1.55741 asin Inverse sine function working with radians -Usage: asin(x) +Usage: asin(x between -1 and 1) → returns an angle in radians +Example: asin(-1) = -1.5708 acos Inverse cosine function working with radians -Usage: acos(x) +Usage: acos(x between -1 and 1) → returns an angle in radians +Example: acos(0.1) = 1.47063 atan Inverse tangent function working with radians -Usage: atan(x) +Usage: atan(x) → returns an angle in radians +Example: atan(1) = 0.78538 sinh Hyperbolic sine function -Usage: sinh(angle θ in radians) +Usage: sinh(θ) +Example: sinh(1) = 1.1752 cosh Hyperbolic cosine -Usage: cosh(angle θ in radians) +Usage: cosh(θ) → returns a number greater than or equal to 1 +Example: cosh(0) = 1 tanh Hyperbolic tangent function -Usage: tanh(angle θ in radians) +Usage: tanh(θ) → returns a number between -1 and 1 (excluded) +Example: tanh(1) = 0.761594 asinh Inverse Hyperbolic sine function -Usage: asinh(x) +Usage: asinh(x) +Example: asinh(90) = 5.19299 acosh Inverse Hyperbolic cosine function -Usage: acosh(x) +Usage: acosh(x greater than or equal to 1) +Example: acosh(2) = 1.31696 atanh Inverse Hyperbolic tangent function -Usage: atanh(x) +Usage: atanh(x between -1 and 1 (excluded)) +Example: atanh(0,99) = 2.64665 sinD Sine function working with degrees -Usage: sinD(angle θ in degrees) +Usage: sinD(angle θ in degrees) → returns a number between -1 and 1 +Example: sinD(90) = 1 cosD Cosine function working with degrees -Usage: cosD(angle θ in degrees) +Usage: cosD(angle θ in degrees) → returns a number between -1 and 1 +Example: cosD(180) = -1 tanD Tangent function working with degrees -Usage: tanD(angle θ in degrees) +Usage: tanD(angle θ in degrees) +Example: tanD(45) = 1 asinD Inverse sine function working with degrees -Usage: asinD(x) +Usage: asinD(x between -1 and 1) → returns an angle in degrees +Example: asinD(1) = 90 acosD Inverse cosine function working with degrees -Usage: acosD(x) +Usage: acosD(x between -1 and 1) → returns an angle in degrees +Example: acosD(-1) = 180 atanD Inverse tangent function working with degrees -Usage: atanD(x) +Usage: atanD(x) → returns an angle in degrees +Example: atanD(1) = 45 log2 Logarithm to the base 2 -Usage: log2(x) +Usage: log2(x greater than 0) +Example: log2(10) = 3.32193 log10 - Logarithm to the base 10 -Usage: log10(x) + Logarithm to the base 10 (same as log(x)) +Usage: log10(x greater than 0) +Example: log10(10) = 1 log Logarithm to the base 10 -Usage: log(x) +Usage: log(x greater than 0) +Example: log(10) = 1 ln Logarithm to base e (2.71828...) -Usage: ln(x) +Usage: ln(x greater than 0) +Example: ln(10) = 2.30259 exp - E raised to the power of x -Usage: exp(x) where e = 2.718 + e raised to the power of x where e = 2.718 +Usage: exp(x) → returns a positive number +Example: exp(2) = 7.38906 sqrt Square root of a value -Usage: sqrt(x) +Usage: sqrt(x greater than or equal to 0) → returns a positive number +Example: sqrt(4) = 2 sign Sign function -1 if x<0; 1 if x>0 -Usage: sign(x) +Usage: sign(x) → returns -1, 0 or 1 +Example: sign(-3) = -1 rint Round to nearest integer -Usage: rint(float x) +Usage: rint(x) → returns an integer number +Example: rint(2.3) = 2 abs Absolute value -Usage: abs(x) +Usage: abs(x) → returns a positive number +Example: abs(-5) = 5 min Min of all arguments -Usage: min(arg 1; arg 2; ... arg n) +Usage: min(arg 1; arg 2; ... arg n) +Example: min(2;3;4) = 2 max Max of all arguments -Usage: max(arg 1; arg 2; ... arg n) +Usage: max(arg 1; arg 2; ... arg n) +Example: max(2;3;4) = 4 sum Sum of all arguments -Usage: sum(arg 1; arg 2; ... arg n) +Usage: sum(arg 1; arg 2; ... arg n) +Example: sum(2;3;4) = 9 avg Mean value of all arguments -Usage: avg(arg 1; arg 2; ... arg n) +Usage: avg(arg 1; arg 2; ... arg n) +Example: avg(2;3;4) = 3 fmod Returns the floating-point remainder of x/y (rounded towards zero) -Usage: fmod(x; y) - - - - M_ - Leave the _ symbol in translation - - - - Variable_ - Leave the _ symbol in translation - - - - Line_ - Leave the _ symbol in translation - - - - AngleLine_ - Leave the _ symbol in translation - - - - Arc_ - Leave the _ symbol in translation - - - - ElArc_ - Leave the _ symbol in translation - - - - Spl_ - Leave the _ symbol in translation - - - - RadiusArc_ - Leave the _ symbol in translation - - - - Radius1ElArc_ - Leave the _ symbol in translation - - - - Radius2ElArc_ - Leave the _ symbol in translation - - - - Angle1Arc_ - Leave the _ symbol in translation - - - - Angle2Arc_ - Leave the _ symbol in translation - - - - Angle1ElArc_ - Leave the _ symbol in translation - - - - Angle2ElArc_ - Leave the _ symbol in translation - - - - Angle1Spl_ - Leave the _ symbol in translation - - - - Angle2Spl_ - Leave the _ symbol in translation - - - - C1LengthSpl_ - Leave the _ symbol in translation - - - - C2LengthSpl_ - Leave the _ symbol in translation +Usage: fmod(x; y) +Example: fmod(3.3;2) = 1.3