From 73fee3cf56caef563575a7b456d26b39d1720629 Mon Sep 17 00:00:00 2001 From: Sergey Solovyev Date: Tue, 16 Jul 2013 17:13:37 +0400 Subject: [PATCH] translations added --- android-app-core/res/values-de/text_about.xml | 23 + .../res/values-de/text_functions.xml | 39 ++ .../res/values-de/text_operators.xml | 23 + .../res/values-de/text_preferences.xml | 16 + .../res/values-de/text_strings.xml | 296 ++++++++++ android-app-core/res/values-de/text_vars.xml | 16 + .../res/values-de/text_wizard.xml | 38 ++ android-app-core/res/values-es/text_about.xml | 58 +- .../res/values-es/text_functions.xml | 108 ++-- .../res/values-es/text_operators.xml | 58 +- .../res/values-es/text_strings.xml | 486 ++++++++++------ android-app-core/res/values-es/text_vars.xml | 57 +- android-app-core/res/values-it/text_about.xml | 54 +- .../res/values-it/text_functions.xml | 108 ++-- .../res/values-it/text_operators.xml | 57 +- .../res/values-it/text_strings.xml | 486 ++++++++++------ android-app-core/res/values-it/text_vars.xml | 57 +- android-app-core/res/values-pl/text_about.xml | 23 + .../res/values-pl/text_functions.xml | 35 ++ .../res/values-pl/text_operators.xml | 22 + .../res/values-pl/text_preferences.xml | 16 + .../res/values-pl/text_strings.xml | 303 ++++++++++ android-app-core/res/values-pl/text_vars.xml | 16 + .../res/values-pl/text_wizard.xml | 43 ++ android-app-core/res/values-ru/text_about.xml | 41 +- .../res/values-ru/text_functions.xml | 24 +- .../res/values-ru/text_operators.xml | 24 +- .../res/values-ru/text_preferences.xml | 24 +- .../res/values-ru/text_strings.xml | 26 +- android-app-core/res/values-ru/text_vars.xml | 0 .../res/values-ru/text_wizard.xml | 25 +- android-app-core/res/values-uk/text_about.xml | 57 +- .../res/values-uk/text_functions.xml | 104 ++-- .../res/values-uk/text_operators.xml | 55 +- .../res/values-uk/text_preferences.xml | 50 +- .../res/values-uk/text_strings.xml | 520 ++++++++++-------- android-app-core/res/values-uk/text_vars.xml | 55 +- .../res/values-zh-rtw/text_about.xml | 64 +-- .../res/values-zh-rtw/text_functions.xml | 104 ++-- .../res/values-zh-rtw/text_operators.xml | 56 +- .../res/values-zh-rtw/text_preferences.xml | 47 +- .../res/values-zh-rtw/text_strings.xml | 514 +++++++++-------- .../res/values-zh-rtw/text_vars.xml | 51 +- android-app-core/res/values/text_about.xml | 21 +- .../res/values/text_functions.xml | 0 .../res/values/text_operators.xml | 0 .../res/values/text_preferences.xml | 2 +- android-app-core/res/values/text_strings.xml | 29 +- android-app-core/res/values/text_vars.xml | 0 android-app-core/res/values/text_wizard.xml | 15 +- .../android/calculator/messages.properties | 3 +- .../android/calculator/messages_de.properties | 13 + .../android/calculator/messages_pl.properties | 13 + .../android/calculator/messages_ru.properties | 3 +- .../android/calculator/messages_uk.properties | 18 +- .../android/calculator/messages_zh.properties | 18 +- 56 files changed, 2640 insertions(+), 1774 deletions(-) create mode 100644 android-app-core/res/values-de/text_about.xml create mode 100644 android-app-core/res/values-de/text_functions.xml create mode 100644 android-app-core/res/values-de/text_operators.xml create mode 100644 android-app-core/res/values-de/text_preferences.xml create mode 100644 android-app-core/res/values-de/text_strings.xml create mode 100644 android-app-core/res/values-de/text_vars.xml create mode 100644 android-app-core/res/values-de/text_wizard.xml create mode 100644 android-app-core/res/values-pl/text_about.xml create mode 100644 android-app-core/res/values-pl/text_functions.xml create mode 100644 android-app-core/res/values-pl/text_operators.xml create mode 100644 android-app-core/res/values-pl/text_preferences.xml create mode 100644 android-app-core/res/values-pl/text_strings.xml create mode 100644 android-app-core/res/values-pl/text_vars.xml create mode 100644 android-app-core/res/values-pl/text_wizard.xml mode change 100755 => 100644 android-app-core/res/values-ru/text_about.xml mode change 100755 => 100644 android-app-core/res/values-ru/text_functions.xml mode change 100755 => 100644 android-app-core/res/values-ru/text_operators.xml mode change 100755 => 100644 android-app-core/res/values-ru/text_preferences.xml mode change 100755 => 100644 android-app-core/res/values-ru/text_strings.xml mode change 100755 => 100644 android-app-core/res/values-ru/text_vars.xml mode change 100755 => 100644 android-app-core/res/values/text_about.xml mode change 100755 => 100644 android-app-core/res/values/text_functions.xml mode change 100755 => 100644 android-app-core/res/values/text_operators.xml mode change 100755 => 100644 android-app-core/res/values/text_preferences.xml mode change 100755 => 100644 android-app-core/res/values/text_strings.xml mode change 100755 => 100644 android-app-core/res/values/text_vars.xml mode change 100755 => 100644 android-app-core/res/values/text_wizard.xml mode change 100755 => 100644 core/src/main/resources/org/solovyev/android/calculator/messages.properties create mode 100644 core/src/main/resources/org/solovyev/android/calculator/messages_de.properties create mode 100644 core/src/main/resources/org/solovyev/android/calculator/messages_pl.properties mode change 100755 => 100644 core/src/main/resources/org/solovyev/android/calculator/messages_ru.properties diff --git a/android-app-core/res/values-de/text_about.xml b/android-app-core/res/values-de/text_about.xml new file mode 100644 index 00000000..aa5b3d32 --- /dev/null +++ b/android-app-core/res/values-de/text_about.xml @@ -0,0 +1,23 @@ + + + + Über + Copyright © 2009–2013\n\nEntwickelt von serso aka se.solovyev\n\n +Wir sind auf Facebook: http://facebook.com/calculatorpp\n\n +Dieses Program steht unter Apache 2.0 License:\nDer Quellcode kann auf \n +http://github.com\ngefunden werden\n +Für mehr Informationen wenden Sie sich an den Autor\n +se.solovyev@gmail.com +\noder besuchen Sie\nhttp://se.solovyev.org\n\n +Wenn SIe das Projekt unterstützen möchten,\n\nkönnen Sie eine spezielle Option von den Einstellungen der Anwendung kaufen\n\n +Wenn die Anwendung Ihnen gefäll\nbewerten Sie es bitte mit 5 Sterne auf\n +Google Play\n\n +Diese Anwendung nutzt folgende Open-Source-Bibliotheken:\n +Simple (XML Serialization)\n +JSCL + Dieser App wird ins Deutsche von E.Bazhenova übersetzt + + Release Notizen + "Release Notes für Version " + http://www.facebook.com/calculatorpp + diff --git a/android-app-core/res/values-de/text_functions.xml b/android-app-core/res/values-de/text_functions.xml new file mode 100644 index 00000000..c32cc747 --- /dev/null +++ b/android-app-core/res/values-de/text_functions.xml @@ -0,0 +1,39 @@ + + + + Funktionen + Trigonometrische Sinus-Funktion + Trigonometrische Cosinus-Funktion + Trigonometrische Tangens-Funktion + Trigonometrische Cotangens-Funktion + Arkussinus - Sinus-Umkehrfunktion + Arkuskosinus - Cosinus-Umkehrfunktion + Arkustangens - Tangens-Umkehrfunktion + Arkuskotangens - Cotangens-Umkehrfunktion + Natürlicher Logarithmus - Logarithmus zur Basis e + Dekadischer Logarithmus - Logarithmus zur Basis 10 + Logarithmus - Logarithmus in einer angegebenen Basis + Exponentialfunktion + Quadratwurzelfunktion + Kubische Stammfunktion + Liefert absoluten Wert eines Arguments + Signumfunktion: +Liefert das Vorzeichen des Arguments zurück: -1, wenn das Argument kleiner als 0 ist; +0 wenn es 0 ist; 1 wenn es mehr als 0 ist + Gleichheits-Funktion - gibt 1 zurück, wenn zwei Argumente gleich sind, ansonsten 0 + Kleinergleich-Funktion - gibt 1 zurück, wenn zwei Argumente gleich sind oder das erste Argument kleiner ist als das zweite, ansonsten 0 + Größergleich-Funktion - gibt 1 zurück, wenn zwei Argumente gleich sind oder das erste Argument größer ist als das zweite, ansonsten 0 + Ungleichheits-Funktion - gibt 1 zurück, wenn zwei Argumente nicht gleich sind, ansonsten 0 + Kleiner-Funktion - gibt 1 zurück, wenn das erste Argument kleiner als das zweite ist, ansonsten 0 + Größer-Funktion - gibt 1 zurück, wenn das erste Argument größer ist als das zweite, ansonsten 0 + Wandelt Grad in Bogenmaß (Radiant) um: d - Grad, m - Minuten (Standard = 0), s - +Sekunden (Standard = 0) + Wandelt Grad von DMS-Notation in Dezimalnotation: d - Grad, m +- Minuten (Standard = 0), s - Sekunden (Standard = 0) + Wandelt Bogenmaß (Radiant) in Grad + Trigonometrische + Hyperbolische trigonometrische + Vergleich + Gemeinsam + Mein + diff --git a/android-app-core/res/values-de/text_operators.xml b/android-app-core/res/values-de/text_operators.xml new file mode 100644 index 00000000..8a58dad7 --- /dev/null +++ b/android-app-core/res/values-de/text_operators.xml @@ -0,0 +1,23 @@ + + + + Operatoren + Division mit Rest ergibt den Rest der Division von \'x\' durch \'y\'. + Summenfunktion \'f(i)\', durchläuft \'i\' von \'von\' bis \'bis\' + Gibt das Produkt der Funktion \'f(i)\', durchläuft \'i\' von \'von\' bis \'bis\' + Gibt Ableiteitung der Ordnung \'order\' (Standard = 1) der Funktionen \'f(x)\' +nach Variable \'x\' an und berechnet sie zu einem Zeitpunkt \'x_point\' (Standard = wie \'x\'). + Integriert Funktion f(x) nach \'x\' + Integriert Funktion \"f(x)\' nach \'x\' in den Grenzen von \'a\' bis \'b\' + Gibt die Fakultät für Ausdruck züruck + Gibt die Doppelfakultät des Ausdrucks zurück + Gibt den Prozentwert des Ausdrucks +zurück.\nBeispiele:\n +100 + 50% = 150\n +100 * 50% = 50\n +100 + 100 * 50% * 50% = 125 + Wandelt Grad in Bogenmaß (Radiant) um.\n +Beispiele:\n +268° = 4.67748\n +30.21° = 0.52726 + diff --git a/android-app-core/res/values-de/text_preferences.xml b/android-app-core/res/values-de/text_preferences.xml new file mode 100644 index 00000000..5dbf1ac5 --- /dev/null +++ b/android-app-core/res/values-de/text_preferences.xml @@ -0,0 +1,16 @@ + + + + Bildschirm automatisch drehen + Wenn App eingeschaltet ist, dreht der Bildschirm des Geräts mit + Zeige Gleicheitszeichen + Wenn Apps eingeschaltet ist, zeige Gleicheitszeichen + Ziffern aus anderen Zahlensystemen ausblenden + Wenn es eingeschaltet ist, werden Ziffern aus anderen Zahlensystemen ausblenden + Zeige Zwischenergebnisse im Verlauf + Wenn eingeschaltet, werden alle Ergebnisse im Verlauf angezeigt. + Ergebnis wird während der Eingabe berechnet + Wenn eingeschaltet, werden die Ergebnisse während der Eingabe berechnet + Abdunkeln des Bildschirms verhindern + Wenn eingeschaltet, wird der Bildschirm nicht abgedunkelt + diff --git a/android-app-core/res/values-de/text_strings.xml b/android-app-core/res/values-de/text_strings.xml new file mode 100644 index 00000000..e6d2b2d3 --- /dev/null +++ b/android-app-core/res/values-de/text_strings.xml @@ -0,0 +1,296 @@ + + + + Calculator++ + Calculator++ (Window mode) + Calculator++ Kostenlos + Calc++ + Einstellungen + Fehler + Ergebnis wurde in die Zwischenablage kopiert! + Einstellungen + Hilfe + Variablen und Konstanten + Haupteinstellungen + Berechnungseinstellungen + Darstellungseinstellungen + Andere Einstellungen + Schiebeknopf Einstellungen + Nach unten + Nach oben + Neustart + rückgängigmachen + wiederholen + C + + einfügen + vars + Kopieren + Graph zeichen + Graph + Ausdrücke markieren + Ergebnis runden + Umschalten: Ergebnis runden + Immer wissenschaftliche Notation + Wenn eingeschaltet, zwingend wissenschaftliche Notation für Ausgaben verwenden +(12.34E-12) + Genauigkeit des Ergebnisses + Maximale Rechenzeit + Wenn Berechnungen angegebenen Grenze übersteigen, stoppt Berechnung mit Fehler + Schließen + Hinzufügen + Abbrechen + Speichern + Löschen + Ja + Nein + Bestätigung für entfernen + Möchten Sie wirklich Variable \'%s\' löschen? + Name + Wert + Beschreibung + Erstelle Variable + Variable bearbeiten + Wert muss entweder Zahl oder leer sein: wenn Sie Parameter haben, erstellen +Sie die Funktion stattdessen! + Variablenname überschneidet sich mit Funktionsnamen! + Variable mit gleichen Namen existiert bereits! + Name der Konstanten ist z ungültig: Name muss mit einem Buchstaben beginnen und +kann Buchstaben, Ziffern und Unterstrich enthalten. + Systemvariable kann nicht geändert werden! + Geben Sie den neuen Ausdruck + Drücken zum Kopieren + Weiter + Verlauf + M + Verlauf ist leer! + Verlauf + Zeichen \'%s\' kann in den Variablennamen nicht akzeptiert werden! + Aktuelle Winkeleinheiten + Grad + Bogenmaß + Gon + Runden + Definiert die in Berechnungen genutze Winkeleinheiten + Aktuelles Zahlensystem + Definiert das Zahlensystem, dass in Berechnungen verwenden wird + Dezimal + Hexadezimal + Oktal + Binär + Theme + Grau + Violett + Hellblau + Metro blau (Standard) + Metro Grün + Metro Lila + Genauigkeit des Endwertes (alle Berechnungen sind mit höchster Genauigkeit +berechnet unabhängig dieser Option) + Umschaltet von Farbe und Syling im Rechner-editor + Setzt das Theme für den Rechner + Verlauf löschen + Datum ein-/ausblenden + Folgende Konstanten sind nicht definiert: {0}! + Keine Gruppenseperator + Apostroph (\') + Leerzeichen ( ) + Gruppenseperator + Setzt Gruppenseperator + Multiplikationszeichen + Setzt Multiplikationszeichen + Layout + Wissenschaftlich (Handy) + Wissenschaftlich + Wissenschaftlich (große Tasten) + Einfach + Einfach (große Tasten) + Setzt Layout der Tasten + Haptische Rückmeldung + Umschaltet Vibration auf Buttonklick + Kurz + Mitte + Lang + Haptische Rückmeldungdauer + Dauer der Vibration auf Button Klicken + Erstellung von leerer Konstante ist night möglich! + Aktuelle Ergebnis ist nicht gültig! + Graf + Von + An + Ziehen Sie die Distanz für Schaltflächen durch + Setzt das Durchziehendistanz für Schaltflächen, die zusätzliche Durchziehenaktionen abwickeln + Bemerkung + Gespeichert + Nicht gespeichert + Ausdruck in die Zwischenablage kopiert! + Status: + Bemerkung: + Verwendung + Verwendung + Ausdruck kopieren + Ergebnis kopieren + Wert + Gespeichert (schauen Sie das Tab \"Geschpeicherte Geschichte\" an) + Bemerkung + Geschichte speichern + Geschichte ändern + Ändern + Geschichte speichern + Verlauf wurde schon gespeichert! + Verlauf muss vor der Bearbeitung gespeichert werden! + Verlauf wurde erfolgreich entfernt! + Verlauf wurde erfolgreich gespeichert! + Beschreibung kopieren + Wert kopieren + Vielen Dank, dass sie Calculator++ gewählt haben! \n\nCalculator++ +ist ein mächtiges Tool für alltägliche Berechnungen. + Willkommen + Releasebemerkungen zeigen + Definiert, ob Popup-Fenster der Releasebemerkungen nach der Aktualisierung +auf neue Versionen angezeigt werden soll + Definiert das Verhalten des Zurückknopfs + Verwenden Sie Zurückknopfs als Verlauf pref + Kaufinformation wird vom Server nachgeladen werden + Kaufinformation aktualisieren + Achtung + Fehler + Abrechnung ist nicht unterstützt: Sie müssen ein Google Checkout Konto haben, +der mit Ihrem Google Konto verknüpft ist, und Sie müssen ein Internetanschluss haben. + Unterstützen Sie das Projekt + Und entferne die Werbung + Werbefreie Option war bereits gekauft! + Einkauf... + Löschen... + Feedback + Sie benutzen Calculator++ für eine bestimmte Zeit\n +und Ihre Meinung über die Andwendung ist wichtig für uns.\n\n +Bitte bewerten Sie Calculator++ \nauf +Google Play,\n lassen Sie eine Bemerkung oder \ndiskutieren Sie die Anwendung \nauf + Facebook + Gute Nachricht - Ich habe gerade eine neue Anwendung für Android veröffentlicht, es heißt + Notes++.\n +Wenn Sie sich an schnellen und eifachen Weg der Hinweisenotizen interessieren, bitte folgen Sie dem + Link +und probieren Sie Notes++! + Winkeleinheiten ist auf \'%s\' geändert! + Basis ist auf \'%s\' geändert! + Umrechnungstool + Umrechnen in... + Umrechnen in Hex + Umrechnen in Bin + Umrechnen in Dec + Editor + Ergebnis + Andere + Ableitungen/integrale + Calculator++ ist abgestürzt... + Calculator++ Absturzbericht + Leider ist Calculator++ kaputt.\n\n +Um das Problem zu beheben, brauchen wir einige Informationen dazu. Es wird dringend empfohlen, den Absturzbericht per email senden +(drücken Sie \'Ok\' Taste, um alle Daten zu senden und Sie werden es im neuen Fenster sehen).\n\n +Möchten Sie den Absturzbericht senden? + Grapheinstellungen + Graph interpolieren + Wenn angekreuzt ist, wird kubische Interpolation in Funktion +Graphzeichnen verwendet + Farbe des reellen Teil des Funktionengraph + Setzt die Farbe des reellen Teil des Funktionengraph + Farbe des Imaginärteil des Funktionengraph + Setzt die Farbe des Imaginärteil des Funktionengraph + Weiß + Grau + Rot + Blau + Grün + Name + Wert + Beschreibung + Einstellungen + Funktion erstellen + Funktion Bearbeiten + Name der Funktion ist nicht gültig: Name muss mit Buchstaben beginnen, +können Buchstaben, Ziffern und Unterstrich enthalten. + Funktion mit demselben Namen existiert bereits! + Funktionskörper kann nicht leer sein! + Funktionsparameter kann nicht leer sein! + Möchten Sie wirklich die Funktion \'%s\' löschen? + Eine leere Funktion kann nicht erstellt werden! + Diese Nachricht bis zu nächsten Session nicht zeigen + Calculator++ Warnung + Arithmetische Fehler ist beim Plotten passiert: %s + OK + Berechnungsnachrichten im Dialog anzeigen + Wenn es aktiviert ist, +wenn die Nachrichten während Berechnungen passieren, spezielle Dialogfeld angezeigt sein wird + + Fixieren + Standard Zahlensystem + Definiert das Standard Zahlensystem + Standard-Zahlensystem \'%1$s\' unterscheidet sich vom aktuellen \'%2$s\'. +Haben Sie um züruck zu ändern vergessen? + Standardwinkeleinheiten + Definiert die Standardwinkeleinheiten + Standard Winkeleinheiten \'%1$s unterscheidet sich vom aktuellen \'%2$s\'. +Haben Sie zurück zu ändern vergessen? + Schließen + Calculator++ Widget (3x3) + Calculator++ Widget (3x4) + Calculator++ Widget (4x4) + Calculator++ Widget (4x5) + Klicken Sie hier, um die Rechner im Fenstermodus zu öffnen + Calculator (im abgetrennten Fenster) Einstellungen + Beim Booten starten + Wenn eingeschaltet, wird Calculator++ in Benachrichtigungsleiste nach dem Gerätestart erscheinen + Abgetrennte Symbol zeigen (Neustart erforderlich) + Wenn aktiviert, wird das zweite Symbol in der Anwendungenliste angezeigt + Sie können das zweite Symbol in der Anwendungenliste mit Hilfe +der Anwendungseinstellungen oder Weiter-Schaltflächedrücken entfernen + Diese Änderung kann einen Neustart erfordern + 2D Plot + 3D Plot + Graphfunktionen + Imaginärteil der Funktion malen + Wenn aktiviert ist, wird der Imaginärteil der Funktion gemalt + Monochrom + Farbkarte (nur 3D) + Solide (-) + Gestrichelt (---) + Gepunktet (..) + Punkt-gestrichen (-.-.-) + Funktionszeichner + Mache Screenshot + Screenshot ist erfolgreich gespeichert: %1$s! + Screenshot kann nicht gespeichert werden, weil SD-Karte nicht eingehangen ist. +Stellen Sie SD-Card ein und versuchen Sie es noch einmal! + Farbe der Linie + Linienfarbe + Linienart + Linienbreite + Funktionseinstellungen + Funktion + Fixiert + Sichtbar + +plot + Eine leere Funktion kann nicht gezeichnet werden! + Es kann nicht gezeichnet werden: zu viele Variablen! + Graphwertebereich + Vollbildschirm + X Min + X Max + Y Min + Y-Max + Ungültige Nummer! + Graph-Grenzen sollten nicht identisch sein! + Anwenden + Nachricht + Weiter + Unterstützung des Projekts ist einfach und sicher: Kaufvorgang wird von Google zur Verfügung gestellt +und alles was Sie brauchen ist ein korrekter konfigurierter Google account.\n\n +Zahlung Informationen werden auf Google-Servern mit Ihrem Google-Konto gespeichert und Sie können leicht die Anwendung auf mehrere Geräte verwenden.\n\n +Klicken Sie auf \"Weiter\" Schaltfläche und Sie werden auf Google Spiel-app weitergeleitet, wo Sie zahlen können. + Kaufen + Vielen Dank für die Unterstützung der Anwendungdes! \n\n Es kann einige Minuten dauern, +bis die Anwendung vor einem Kauf informiert wird. Sie können immer Informationen vor einem Kauf in Ihrem Google-Konto überprüfen.\n +Wenn Sie irgendwelche Probleme oder Fragen haben, bitte kontaktieren Sie direkt (der Kontakte steht im Main ->Menü->über) + diff --git a/android-app-core/res/values-de/text_vars.xml b/android-app-core/res/values-de/text_vars.xml new file mode 100644 index 00000000..ae213e5e --- /dev/null +++ b/android-app-core/res/values-de/text_vars.xml @@ -0,0 +1,16 @@ + + + + Das von Kreisumfang zu Durchmesser. Hinweis: diese Konstante ist gradabhängig = > rad: 3,14, deg: 180,0 + Das Verhältnis von Kreisumfang zu Durchmesser. Hinweis: diese Konstante ist gradunabhängig = > rad: 3,14, deg: 3.14 + Besondere reelle Zahl, so dass der Wert der Ableitung (die Steigung der Tangente) der Funktion f(x) = e ^ X an der Stelle X = 0 gleich 1 ist + Imaginäre Einheit, die definiert ist, so dass i ^ 2 =-1 + Lichtgeschwindigkeit im Vakuum, M·s ^-1 + Die Gravitationskonstante ist eine empirische physikalische Konstante, die bei der Berechnung der Massenanziehung zwischen Objekten mit Masse, m ^ 3·kg ^ −1·s ^ −2 gilt + Physikalische Konstante gibt die Größe der Energie Quanten in der Quantenmechanik an, J·s + Verringerte Planck Konstante, J·s + Keine Zahl + Unendlich + Integriert + Mein + diff --git a/android-app-core/res/values-de/text_wizard.xml b/android-app-core/res/values-de/text_wizard.xml new file mode 100644 index 00000000..8c0212b7 --- /dev/null +++ b/android-app-core/res/values-de/text_wizard.xml @@ -0,0 +1,38 @@ + + + + Weiter + Zurück + Beenden + Wizard starten + Optimieren + Große Tasten + Einfach + Im einfachen Modus werden nur grundlegende Funktionen vom Startbildschirm verfügbar. +Das Ergebnis wird auf die 5 Nachkommastelle gerundet. Grad wird als Winkeleinheit verwendet. + Ingenieur + In Ingenieur Modus werden spezielle Funktionen auf dem Hauptbildschirm verwendet. +Ergebnisse werden nicht gerundet und es wird die Ingenieur-Notation verwendet. Bogenmaße wird als Standardwinkeleinheiten verwendet. + Wizard starten + Ausgezeichnet! Tippen Sie auf die Schaltfläche noch einmal um es nochmal zu versuchen + Tippen Sie einmal auf die Schaltfläche unten um 9 zu verwenden + Ziehen Sie aus der Mitte der Taste nach oben durch, um % zu verwenden + Ziehen Sie aus der Mitte der Taste nach links durch, um sin zu verwenden + Ziehen Sie aus der Mitte der Taste nach unten durch, um ^2 zu verwenden + Willkommen + Layout wählen + Modus wählen + Rechner in einem abgtrennten Fenster + Schiebeknopfgrundlagen + Fast fertig! + Calculator++ ist freie und offene Software: alle Funktionen sind kostenlos +und der Quelltext kann auf GitHub gefunden werden. + Es gibt einige Möglichkeiten, wie Sie helfen können, diese Anwedung besser zu machen: + Geld spenden + Übersetzen + Quellcode beitragen + Wenn Rechner im separaten Fenster ist, können Sie rechnen, +während andere apps auf Ihrem Gerät genutzt werden + Rechner im separaten Fenster aktivieren (zweites Symbol erscheint in der Liste der Anwendungen) + \"Durchziehen\" Schaltfläche ist eine exklusive Funktion der Calculator++, die schnelle Zugriff auf die sekundären Funktionen bietet + diff --git a/android-app-core/res/values-es/text_about.xml b/android-app-core/res/values-es/text_about.xml index ce5b9fb7..35e9f711 100644 --- a/android-app-core/res/values-es/text_about.xml +++ b/android-app-core/res/values-es/text_about.xml @@ -1,46 +1,24 @@ - - + + - - Acerca de - - Copyright (c) 2009-2011\n\n - Creado por serso aka se.solovyev - \n\n - Este programa es Open Source:\nTodo el código fuente puede encontrarse en\n + Acerca de + Copyright © 2009–2013\n\nCreated by serso aka se.solovyev\n\n + We are on Facebook: http://facebook.com/calculatorpp\n\n + This program is distributed under Apache 2.0 License:\nsource code can be found on\n http://github.com\n\n - Para más información, por favor,\ncontacte con el autor al mail\n - se.solovyev@gmail.com\n - o visite\nhttp://se.solovyev.org\n\n - Si desea apoyar el proyecto\n\n - Si le gusta la aplicación\nvalórela con 5 estrellas en\n + For more information please\ncontact the author by email\n + se.solovyev@gmail.com + \nor visit\nhttp://se.solovyev.org\n\n + If you want to support the project\n\nyou can buy a special option from application preferences\n\n + If you like the application\nrate it with 5 stars on\n Google Play\n\n - Gracias a las personas que han traducido Calculadora++ a los diferentes idiomas:\n - Español - Jordi Luna\n - Italiano - Gabriele Ravanetti\n\n - Esta aplicación utiliza las siguiente librerías Open Source:\n + This application uses next open source libraries:\n Simple (XML serialization)\n JSCL - - \ No newline at end of file + This app is translated to Spanish by: + + Release notes + "Release notes for version " + http://www.facebook.com/calculatorpp + diff --git a/android-app-core/res/values-es/text_functions.xml b/android-app-core/res/values-es/text_functions.xml index bc2112b4..598d489a 100644 --- a/android-app-core/res/values-es/text_functions.xml +++ b/android-app-core/res/values-es/text_functions.xml @@ -1,76 +1,52 @@ - - + + - - Funciones - - Función trigonométrica seno. - Función trigonométrica coseno. - Función trigonométrica tangente. - Función trigonométrica cotangente. - Arcseno - El inverso de la función seno. - Arccoseno - El inverso de la función coseno. - Arctangente - El inverso de la función tangente. - Arccotangente - El inverso de la función cotangente. - Logaritmo neperiano - logaritmo de base e. - Decadic logaritmo - logaritmo de base 10. - Logaritmo - logaritmo de la base especificada. - Función exponencial. - Función Raíz cuadrado. - Función Raíz cuadrada. - Función que devuelve el valor absoluto de un argumento. - Función que devuelve el signo de un argumento: -1 si el argumento es menor que - 0, 0 si es igual a 0, 1 si es mayor que 0. + Funciones + Función trigonométrica seno + Función trigonométrica coseno + Función trigonométrica tangente + Función trigonométrica cotangente + Arcsine - inverse sine function + Arccosine - inverse cosine function + Arctangent - inverse tangent function + Arccotangent - inverse cotangent function + Logaritmo neperiano - logaritmo de base e + Decadic logaritmo - logaritmo de base 10 + Logaritmo - logaritmo de la base especificada + Función exponencial + Función Raíz cuadrado + Cubic root function + Gives absolute value of an argument + Gives the sign of an argument: -1 if argument is less than 0, 0 + if equals to 0, 1 if more than 0 - Función Igual - Devuelve 1 si dos argumentos son iguales, 0 si no lo son. + Función Igual - Devuelve 1 si dos argumentos son iguales, 0 si no lo son - Función Menor o igual - Devuelve 1 si dos argumentos son iguales o el primero es - menor que el segundo, 0 si el primero es mayor. + Función Menor o igual - Devuelve 1 si dos argumentos son iguales o el primero es + menor que el segundo, 0 si el primero es mayor - Función Mayor o igual - Devuelve 1 si dos argumentos son iguales o si el primero - es mayor que el segundo, 0 si el primero es menor. + Función Mayor o igual - Devuelve 1 si dos argumentos son iguales o si el primero + es mayor que el segundo, 0 si el primero es menor - Función Distinto - Devuelve 1 si dos argumentos no son iguales, 0 si son - idénticos. + Función Distinto - Devuelve 1 si dos argumentos no son iguales, 0 si son + idénticos - Función Menor - Devuelve 1 si el primer argumento es menor que el segundo, 0 si - no lo es. + Función Menor - Devuelve 1 si el primer argumento es menor que el segundo, 0 si + no lo es - Función Mayor - Devuelve 1 si el primer argumento es mayor que el segundo, 0 si - no lo es. + Función Mayor - Devuelve 1 si el primer argumento es mayor que el segundo, 0 si + no lo es - Convierte grados a radianes: d - grados, m - minutos (por defecto = 0), s - - segundos (por defecto = 0). + Convierte grados a radianes: d - grados, m - minutos (por defecto = 0), s - + segundos (por defecto = 0) - Convierte grados de notación DMS a notación decimal: d - grados, m - minutos - (por defecto = 0), s - segundos (por defecto = 0). + Convierte grados de notación DMS a notación decimal: d - grados, m - minutos + (por defecto = 0), s - segundos (por defecto = 0) - Convierte radianes a grados. - - Trigonométrico - Hiperbólicas trigonométricas - Comparación - Común - Mis - - \ No newline at end of file + Convierte radianes a grados + Trigonométrico + Hiperbólicas trigonométricas + Comparación + Común + Mis + diff --git a/android-app-core/res/values-es/text_operators.xml b/android-app-core/res/values-es/text_operators.xml index 1e861f83..09cb766c 100644 --- a/android-app-core/res/values-es/text_operators.xml +++ b/android-app-core/res/values-es/text_operators.xml @@ -1,56 +1,30 @@ - - + + - - Operadores - - El módulo operación encuentra el resto de la división de \'x\' por \'y\'. + Operadores + Modulo operation finds the remainder of division of \'x\' by \'y\' + Sums functions \'f(i)\', iterating through \'i\' from \'from\' to \'to\' - Función Suma \'f(i)\', iterativamente a través de \'i\' desde \'from\' hasta - \'to\'. + Gives product of functions \'f(i)\', iterating through \'i\' from \'from\' + to \'to\' - Devuelve el producto de las funciones \'f(i)\', iterativamente a través de - \'i\' desde \'from\' hasta \'to\'. + Gives derivative of order \'order\' (default = 1) of functions \'f(x)\' + by \'x\' variable and calculates at point \'x_point\' (default = same as \'x\') - Devuelve el derivado de orden \'order\' (por defecto = 1) de funciones - \'f(x)\' por \'x\' variable y calcula en el punto \'x_point\' (por defecto = el mismo que \'x\'). + Gives integral of function \'f(x)\' by \'x\' variable + Integrates function \'f(x)\' by \'x\' variable from \'a\' to \'b\' - Devuelve la integral de la función \'f(x)\' por \'x\' variable. - Función integral \'f(x)\' por \'x\' variable desde \'a\' hasta \'b\'. - - - Devuelve el factorial de la expresión antes. - Devuelve el doble factorial de la expresión antes. - Devuelve el valor porcentaje de la expresión + Gives the factorial of the expression before + Gives the double factorial of the expression before + Devuelve el valor porcentaje de la expresión antes.\nEjemplos:\n 100 + 50% = 150\n 100 * 50% = 50\n 100 + 100 * 50% * 50% = 125 - Convierte Grados a Radianes.\n + Convierte Grados a Radianes.\n Ejemplos:\n 268° = 4.67748\n 30.21° = 0.52726 - - \ No newline at end of file + diff --git a/android-app-core/res/values-es/text_strings.xml b/android-app-core/res/values-es/text_strings.xml index 952d6e37..7f5ab36f 100644 --- a/android-app-core/res/values-es/text_strings.xml +++ b/android-app-core/res/values-es/text_strings.xml @@ -1,180 +1,324 @@ - - - + - Calculadora++ - Calculadora++ Free - Calc++ - Configuración - Error - Resultado copiado al Portapapeles! - Configuración - Ayuda - Variables y Constantes - - Ajustes principales - Ajustes de Cálculo - Ajustes de apariencia - Configuración del deslizamiento de los botones - - - Abajo - Arriba - Reiniciar - - deshacer - rehacer - C - borrar - pegar - vars - - Copiar - Parcela gráfico - Gráfico - - Resaltar expresiones - Redondear resultado - Activar redondeo del resultado - Precisión del resultado - Salir - Añadir - Cancelar - Grabar - Borrar - Si - No - Confirmación de Borrado - ¿Realmente desea borrar la variable \'%s\'? - Nombre - Valor - Descripción - Crear variable - Editar variable - - ¡El valor debe ser numérico o estar vacío! - La variable name entra en conflicto con la función name! - ¡Ya existe una variable con el mismo nombre! - El nombre de la Constante no es válido: el nombre debe comenzar con una + Calculadora++ + Calculator++ (Window mode) + Calculadora++ Free + Calc++ + Configuración + Error + Result has been copied to the clipboard! + Configuración + Ayuda + Variables y Constantes + Ajustes principales + Ajustes de Cálculo + Ajustes de apariencia + Other settings + Configuración del deslizamiento de los botones + Abajo + Arriba + Reiniciar + deshacer + rehacer + C + borrar + pegar + vars + Copiar + Parcela gráfico + Gráfico + Resaltar expresiones + Redondear resultado + Activar redondeo del resultado + Always scientific notation + If turned on forces to use only scientific notation of output + (12.34E-12) + + Precisión del resultado + Maximum calculation time + If calculations exceed specified limit - calculator halts with + error + + Salir + Añadir + Cancelar + Grabar + Borrar + Si + No + Confirmación de Borrado + ¿Realmente desea borrar la variable \'%s\'? + Nombre + Valor + Descripción + Crear variable + Editar variable + ¡El valor debe ser numérico o estar vacío! + La variable name entra en conflicto con la función name! + ¡Ya existe una variable con el mismo nombre! + El nombre de la Constante no es válido: el nombre debe comenzar con una letra,puede contener letras, dígitos y líneas. - ¡Una Variable de Sistema no puede ser cambiada! - - Introducir nuevo cálculo - Pulsar para copiar - Continuar - Historial - M - ¡El Historial está vacío! - Historial - El caracter \'%s\' no es aceptado en la variable name! - - Unidades de Ángulos - Grados - Radianes - Gradianes - Vueltas - Define la unidad para ángulos predeterminada. - - Sistemas de numeración - Define el sistema de numeración por defecto para todos los números de + ¡Una Variable de Sistema no puede ser cambiada! + Introducir nuevo cálculo + Pulsar para copiar + Continuar + Historial + M + ¡El Historial está vacío! + Historial + El caracter \'%s\' no es aceptado en la variable name! + Unidades de Ángulos + Grados + Radianes + Gradianes + Vueltas + Define la unidad para ángulos predeterminada. + Sistemas de numeración + Define el sistema de numeración por defecto para todos los números de entrada. - Secimal - Hexadecimal - Octal - Binario - - Tema - Predeterminado - Violeta - Azul claro - Precisión del resultado (todos los cálculos se realizar con la máxima + Secimal + Hexadecimal + Octal + Binario + Tema + Predeterminado + Violeta + Azul claro + Metro Blue (Default) + Metro Green + Metro Purple + Precisión del resultado (todos los cálculos se realizar con la máxima precisión a pesar del valor de esta opción) - Ajustar colores y estilo en el editor de la calculadora - Establecer el tema para la Calculadora - Limpiar historial - Las constantes siguientes no están definidas: {0}! - - No usar separador de Grupos - Apóstrofe (\') - Espacio ( ) - Separador de Grupos - Establecer el separador de Grupos - Signo de multiplicación - Establece signo de multiplicación - - Plantilla - Teléfono - Calculadora - Establecer la plantilla de los botones - - Configurar vibración - Vibrar al pulsar un botón - - Corto - Medio - Largo - - Duración de la vibración - Duración de la vibración al pulsar un butón - - No se puede crear una constante vacía! - El resultado actual no es válido! - - Gráfico - From - To - - Swipe distance for buttons - Sets swipe distance for buttons that support additional swipe actions + Ajustar colores y estilo en el editor de la calculadora + Establecer el tema para la Calculadora + Limpiar historial + Show/hide date + Las constantes siguientes no están definidas: {0}! + No usar separador de Grupos + Apóstrofe (\') + Espacio ( ) + Separador de Grupos + Establecer el separador de Grupos + Signo de multiplicación + Establece signo de multiplicación + Plantilla + Teléfono + Calculadora + Scientific (Big buttons) + Simple + Simple (Big buttons) + Establecer la plantilla de los botones + Configurar vibración + Vibrar al pulsar un botón + Corto + Medio + Largo + Duración de la vibración + Duración de la vibración al pulsar un butón + No se puede crear una constante vacía! + El resultado actual no es válido! + Gráfico + From + To + Swipe distance for buttons + Sets swipe distance for buttons that support additional swipe actions - - Comment - Guardado - No se guarda - Expresión copiada en el portapapeles! - Estado: - Comentario: - Utilizar - Copia de la expresión - Copia resultado - Valor - Salvo (ver \'La historia guardada\' ficha) - Comentario - Guardar el historial de - Modificar la historia - modificar - La historia guardada - - La historia se salvó ya! - La historia debe ser salvado antes de editar! - La historia se ha eliminado correctamente! - La historia se ha guardado correctamente! - - Сopia de la descripción - Сopia el valor - - \ No newline at end of file + Comment + Guardado + No se guarda + Expresión copiada en el portapapeles! + Estado: + Comentario: + Utilizar + Use + Copia de la expresión + Copia resultado + Valor + Salvo (ver \'La historia guardada\' ficha) + Comentario + Guardar el historial de + Modificar la historia + modificar + La historia guardada + La historia se salvó ya! + La historia debe ser salvado antes de editar! + La historia se ha eliminado correctamente! + La historia se ha guardado correctamente! + Сopia de la descripción + Сopia el valor + Thank you for choosing Calculator++!\n\nCalculator++ is a powerful tool for making + everyday calculations. + + Welcome + Show release notes + Defines if release notes popup window should appear after update to + the new version + + Defines the behaviour of the Back button + Use Back button as history prev + Purchase information will be reloaded from the server + Update purchase information + Warning + Error + Billing is not supported: you must have Google Checkout account linked to your Google + account and must be connected to the internet. + + Support the project + And remove the advertisement + Ad free option has been already purchased! + Purchasing… + Clearing… + Feedback + You have been using Calculator++ for some time \n + and it\'s important for us to know your opinion about application.\n\n + Please rate Calculator++ \non + Google Play,\n leave a comment or \ndiscuss application \non + Facebook + + Good news - I just released new application for Android called + Notes++.\n + If you\'re interesting in fast and easy way of making notes please follow the + link + and try Notes++! + + Angle units changed to \'%s\'! + Numeral base changed to \'%s\'! + Conversion tool + Convert to… + Convert to hex + Convert to bin + Convert to dec + Editor + Result + Other + Derivatives/Integrals + Calculator++ has crashed… + Calculator++ crash report + + Unfortunately, Calculator++ has crashed.\n\n + In order to fix the problem we need some information about it. It\'s highly recommended to send crash report via + email (after pressing \'Ok\' button you will see all sent data in the new window).\n\n + Do you want to send crash report? + + Graph settings + Interpolate function\'s graph + If checked cubic interpolation will be used in function + graph drawing + + Color of real part of functions graph + Sets color of real part functions graph + Color of imaginary part of functions graph + Sets color of imaginary part functions graph + White + Grey + Red + Blue + Green + Name + Value + Description + Parameters + Create function + Edit function + Name of function is not valid: name must start with letter, can contain + letters, digits and underscore. + + Function with same name already exists! + Function body could not be empty! + Function parameter should not be empty! + Do you really want to delete \'%s\' function? + Unable to create empty function! + Do not show this message until next session + Calculator++ warning + Arithmetic error occurred while plotting: %s + OK + Show calculation messages in dialog + If turned on if any message occurred while calculations + special dialog will be shown + + Fix + Default numeral system + Defines the default numeral system + Default numeral system \'%1$s\' differs from current \'%2$s\'. Forgot + to change back? + + Default angle units + Defines the default angle units + Default angle units \'%1$s\' differs from current \'%2$s\'. Forgot to + change back? + + Close + Calculator++ Widget (3x3) + Calculator++ Widget (3x4) + Calculator++ Widget (4x4) + Calculator++ Widget (4x5) + Click to open calculator in window mode + Calculator (in separate window) settings + Start on boot + If turned on Calculator++ will appear in notification bar after + device boot + + Show separate icon (require reboot) + If turned on second icon will be shown in applications\' list + + You can remove second icon in applications\' list from application + settings or by pressing next button + + This change may require reboot + 2D plot + 3D plot + Graph functions + Plot imaginary part of function + If checked imaginary part of function will be plotted + Monochrome + Color map (only 3D) + Solid (-----) + Dashed (- - -) + Dotted (. . .) + Dot-dashed (-.-.-) + Function plotter + Capture screenshot + Screenshot successfully saved: %1$s! + Screenshot cannot be saved as SD card is not mounted. Mount SD + card and try again! + + Line color type + Line color + Line style + Line width + Function settings + Function + Pinned + Visible + +plot + Unable to plot empty function! + Unable to plot: too many variables! + Graph range + Fullscreen + X Min + X Max + Y Min + Y Max + Invalid number! + Graph boundaries should not be the same! + Apply + Message + Continue + Supporting the project is easy and secure: purchase process is provided by Google + and all you need is a properly configured Google account.\n\n + Payment information is stored in Google servers with your Google account and you can easily use application on + several devices.\n\n + By clicking \'Continue\' button you will be redirected to the Google Play app to make the payment. + + Purchase + Thank you for supporting the application!\n\n It might take several + minutes until app will be informed about the purchase. You always can check information about the purchase in + your Google Account.\n + If you have any problems or questions feel free to contact me directly (contacts are available in + Main->Menu->About) + + diff --git a/android-app-core/res/values-es/text_vars.xml b/android-app-core/res/values-es/text_vars.xml index 1200a1a9..67e80434 100644 --- a/android-app-core/res/values-es/text_vars.xml +++ b/android-app-core/res/values-es/text_vars.xml @@ -1,49 +1,26 @@ - - + + - - Ratio de la circunferencia del círculo a su diámetro. Nota: esta constante es la - unidad de medida dependiente => rad: 3,14, deg: 180,0 + Ratio de la circunferencia del círculo a su diámetro. Nota: esta constante es la + unidad de medida dependiente => rad: 3,14, deg: 180,0 - Ratio de la circunferencia del círculo a su diámetro. Nota: esta constante es la - unidad de medida independientes => rad: 3.14, deg: 3.14 + Ratio de la circunferencia del círculo a su diámetro. Nota: esta constante es la + unidad de medida independientes => rad: 3.14, deg: 3.14 - Número real único como el valor de la derivada (pendiente de la línea tangente) + Número real único como el valor de la derivada (pendiente de la línea tangente) de la función f(x) = e^x en el punto x = 0 es igual a 1 - Unidad imaginaria, definida como i^2 = −1 - Velocidad de la luz en vacío, m·s^-1 - La constante gravitatoria es una constante física empírica consistente en el + Unidad imaginaria, definida como i^2 = −1 + Velocidad de la luz en vacío, m·s^-1 + La constante gravitatoria es una constante física empírica consistente en el cálculo de la atracción gravitatoria entre objetos con masa, m^3·kg^−1·s^−2 - Constante física que refleja los tamaños de energía cuántica en mecánica + Constante física que refleja los tamaños de energía cuántica en mecánica cuántica, J·s - Constante Planck reducida, J·s - No es un número - Infinito - - Incorporado - Mis - - \ No newline at end of file + Constante Planck reducida, J·s + No es un número + Infinito + Incorporado + Mis + diff --git a/android-app-core/res/values-it/text_about.xml b/android-app-core/res/values-it/text_about.xml index 2c175c5b..25d0f95e 100644 --- a/android-app-core/res/values-it/text_about.xml +++ b/android-app-core/res/values-it/text_about.xml @@ -1,44 +1,24 @@ - - + + - - About - - Copyright (c) 2009-2011\n\nCreato da serso aka se.solovyev\n\n - Questo programma è open source:\ntutto il codice può essere trovato su\n + About + Copyright © 2009–2013\n\nCreated by serso aka se.solovyev\n\n + We are on Facebook: http://facebook.com/calculatorpp\n\n + This program is distributed under Apache 2.0 License:\nsource code can be found on\n http://github.com\n\n - Per ulteriori informazioni contatta\nl\'autore via email\n + For more information please\ncontact the author by email\n se.solovyev@gmail.com - \no visita\nhttp://se.solovyev.org\n\n - Se vuoi aiutare il progetto\n\n - Se ti piace l\'applicazione\nvota 5 stelle nel\n + \nor visit\nhttp://se.solovyev.org\n\n + If you want to support the project\n\nyou can buy a special option from application preferences\n\n + If you like the application\nrate it with 5 stars on\n Google Play\n\n - Grazie a persone che traducono Calculator++ in diverse lingue:\n - Italiano - Gabriele Ravanetti\n - Spagnolo - Jordi Luna\n\n - Questa applicazione utilizza prossimo librerie open source:\n + This application uses next open source libraries:\n Simple (XML serialization)\n JSCL - - \ No newline at end of file + This app is translated to Italian by: + + Release notes + "Release notes for version " + http://www.facebook.com/calculatorpp + diff --git a/android-app-core/res/values-it/text_functions.xml b/android-app-core/res/values-it/text_functions.xml index d4f523e1..bdcc49ae 100644 --- a/android-app-core/res/values-it/text_functions.xml +++ b/android-app-core/res/values-it/text_functions.xml @@ -1,77 +1,49 @@ - - + + - - Funzioni - - Funzione trigonometrica seno. - Funzione trigonometrica coseno. - Funzione trigonometrica tangente. - Funzione trigonometrica cotangente. - Arcseno - inversa della funzione seno. - Arccoseno - inversa della funzione coseno. - Arctangente - inversa della funzione tangente. - Arccotangente - inversa della funzione cotangente. - Logaritmo naturale - logaritmo in base e. - Logaritmo decimale - logaritmo in base 10. - Logaritmo - logaritmo nella base specificata. - Funzione esponenziale. - Funzione radice quadrata. - Funzione radice cubica. - Funzione che restituisce il valore assoluto di un argomento. - Funzione che restituisce il segno di un argomento: -1 se l\'argomnto è minore - di 0, 0 se è uguale a 0, 1 se è maggiore di 0. + Funzioni + Trigonometric sine function + Trigonometric cosine function + Trigonometric tangent function + Trigonometric cotangent function + Arcsine - inverse sine function + Arccosine - inverse cosine function + Arctangent - inverse tangent function + Arccotangent - inverse cotangent function + Natural logarithm - logarithm to base e + Decadic logarithm - logarithm to base 10 + Logarithm - logarithm the specified base + Exponential function + Square root function + Cubic root function + Gives absolute value of an argument + Gives the sign of an argument: -1 if argument is less than 0, 0 + if equals to 0, 1 if more than 0 - Funzione uguaglianza - restituisce 1 se i due argomenti sono uguali, 0 - altrimenti. + Equals function - gives 1 if two arguments are equals, 0 otherwise + Lesser-or-equals function - gives 1 if two arguments are equals or first is less + than second, 0 otherwise - Funzione minore-o-uguale - restituisce 1 se i due argomenti sono uguali o il - primo è minore del secondo, 0 altrimenti. + Greater-or-equals function - gives 1 if two arguments are equals or first is + greater than second, 0 otherwise - Funzione maggiore-o-uguale - restituisce 1 se i due argomenti sono uguali o il - primo è maggiore del secondo, 0 altrimenti. + Not-equals function - gives 1 if two arguments are not equals, 0 otherwise - Funzione disuguaglianza - restituisce 1 se i due argomenti non sono uguali, 0 - altrimenti. + Lesser function - gives 1 if first argument is less than second, 0 otherwise - Funzione minore - restituisce 1 se il primo argomento è minore del secondo, 0 - altrimenti. + Greater function - gives 1 if first argument is greater than second, 0 + otherwise - Funzione maggiore - restituisce 1 se il primo argomento è maggiore del secondo, - 0 altrimenti. + Converts degrees into radians: d - degrees, m - minutes (default = 0), s - + seconds (default = 0) - Converte gradi in radianti: d - gradi, m - minuti (predefinito = 0), s - - secondi (predefinito = 0). + Converts degrees from DMS notation to decimal notation: d - degrees, m - + minutes (default = 0), s - seconds (default = 0) - Converte gradi dalla notazione DMS in notazione decimale: d - gradi, m - minuti - (predefinito = 0), s - secondi (predefinito = 0). - - Converte radianti in gradi. - - Trigonometriche - Trigonometriche iperboliche - Comparazione - Comune - Mie - - \ No newline at end of file + Converts radians into degrees + Trigonometriche + Trigonometriche iperboliche + Comparazione + Comune + Mie + diff --git a/android-app-core/res/values-it/text_operators.xml b/android-app-core/res/values-it/text_operators.xml index 18c74204..272dbe31 100644 --- a/android-app-core/res/values-it/text_operators.xml +++ b/android-app-core/res/values-it/text_operators.xml @@ -1,53 +1,30 @@ - - + + - - Operatori - - L\'operazione modulo trova il resto della divisione di \'x\' by \'y\'. - Funzione somma \'f(i)\', iterazione tra \'i\' da \'from\' a \'to\'. - Restituisce il prodotto della funzione \'f(i)\', iterazione tra \'i\' da - \'from\' a \'to\'. + Operatori + Modulo operation finds the remainder of division of \'x\' by \'y\' + Sums functions \'f(i)\', iterating through \'i\' from \'from\' to \'to\' - Restituisce la derivata di ordine \'order\' della funzione \'f(x)\' in - \'x\' e calcolata nel punto \'x_point\'. + Gives product of functions \'f(i)\', iterating through \'i\' from \'from\' + to \'to\' - Restituisce l\'integrale della funzione \'f(x)\' in \'x\'. - Funzione integrale \'f(x)\' in \'x\' da \'a\' a \'b\'. - - Restituisce il fattoriale dell\'espressione precedente. - Restituisce il fattoriale doppio dell\'espressione precedente. + Gives derivative of order \'order\' (default = 1) of functions \'f(x)\' + by \'x\' variable and calculates at point \'x_point\' (default = same as \'x\') - Restituisce la percentuale dell\'espressione + Gives integral of function \'f(x)\' by \'x\' variable + Integrates function \'f(x)\' by \'x\' variable from \'a\' to \'b\' + + Gives the factorial of the expression before + Gives the double factorial of the expression before + Restituisce la percentuale dell\'espressione precedente.\nEsempi:\n 100 + 50% = 150\n 100 * 50% = 50\n 100 + 100 * 50% * 50% = 125 - Converte gradi in radianti.\n + Converte gradi in radianti.\n Esempi:\n 268° = 4.67748\n 30.21° = 0.52726 - - \ No newline at end of file + diff --git a/android-app-core/res/values-it/text_strings.xml b/android-app-core/res/values-it/text_strings.xml index 31159e9c..c640c8e5 100644 --- a/android-app-core/res/values-it/text_strings.xml +++ b/android-app-core/res/values-it/text_strings.xml @@ -1,182 +1,326 @@ - - - + - Calculator++ - Calculator++ Free - Calc++ - Impostazioni - Errore - Risultato copiato negli appunti! - Impostazioni - Aiuto - Variabili e costanti - - Impostazioni principali - Impostazioni calcolo - Impostazioni aspetto - Impostazioni trascinamento tasti - - - Giù - Su - Riavvia - - annulla - rifai - - cancella - incolla - vars - - Copiare - Plot grafico - Grafico - - Evidenzia espressioni - Arrotonda risultato - Attiva/disattiva arrotondamento dei risultati - Precisione del risultato - Esci - Aggiungi - Annulla - Salva - Rimuovi - - No - Conferma rimozione - Vuoi davvero cancellare la variabile \'%s\'? - Nome - Valore - Descrizione - Crea variabile - Modifica variabile - - Il valore deve essere un numero o vuoto! - Il nome della variabile entra in conflitto col nome della funzione! - Una variabile con lo stesso nome esiste già! - Il nome della costante non è valido: il nome deve iniziare con una lettera, può + Calculator++ + Calculator++ (Window mode) + Calculator++ Free + Calc++ + Impostazioni + Errore + Result has been copied to the clipboard! + Impostazioni + Aiuto + Variabili e costanti + Impostazioni principali + Impostazioni calcolo + Impostazioni aspetto + Other settings + Impostazioni trascinamento tasti + Giù + Su + Riavvia + annulla + rifai + C + cancella + incolla + vars + Copiare + Plot grafico + Grafico + Evidenzia espressioni + Arrotonda risultato + Attiva/disattiva arrotondamento dei risultati + Always scientific notation + If turned on forces to use only scientific notation of output + (12.34E-12) + + Precisione del risultato + Maximum calculation time + If calculations exceed specified limit - calculator halts with + error + + Esci + Aggiungi + Annulla + Salva + Rimuovi + + No + Conferma rimozione + Vuoi davvero cancellare la variabile \'%s\'? + Nome + Valore + Descrizione + Crea variabile + Modifica variabile + Il valore deve essere un numero o vuoto! + Il nome della variabile entra in conflitto col nome della funzione! + Una variabile con lo stesso nome esiste già! + Il nome della costante non è valido: il nome deve iniziare con una lettera, può contenere lettere, cifre e underscore. - La variabile di sistema non può essere cambiata! - - Inserisci una nuova espressione - Premi per copiare - Continua - Cronologia - M - La cronologia è vuota! - Cronologia - Il carattere \'%s\' non è accettato come nome di variabile! - - Unità angoli - Gradi - Radianti - Gradianti - Accende - Definisci l\'unità di misura predefinita per gli angoli. - - Numerale sistemi - Definisce il sistema numerale di default per tutti i numeri di ingresso. + La variabile di sistema non può essere cambiata! + Inserisci una nuova espressione + Premi per copiare + Continua + Cronologia + M + La cronologia è vuota! + Cronologia + Il carattere \'%s\' non è accettato come nome di variabile! + Unità angoli + Gradi + Radianti + Gradianti + Accende + Definisci l\'unità di misura predefinita per gli angoli. + Numerale sistemi + Definisce il sistema numerale di default per tutti i numeri di ingresso. - Decimale - Esadecimale - Ottale - Binario - - Tema - Predefinito - Viola - Blu chiaro - Precisione del risultato (tutti i calcoli sono fatti con la massima + Decimale + Esadecimale + Ottale + Binario + Tema + Predefinito + Viola + Blu chiaro + Metro Blue (Default) + Metro Green + Metro Purple + Precisione del risultato (tutti i calcoli sono fatti con la massima precisione, indipendentemente dal valore di questa opzione) - Attiva o disattiva la colorazione e lo styling dell\' editor + Attiva o disattiva la colorazione e lo styling dell\' editor calcolatrice - Imposta il tema per la calcolatrice - Cancella cronologia - Le prossime costanti sono indefinite: {0}! - - Nessun separatore - Apostrofo (\') - Spazio ( ) - Separatore raggruppamento - Imposta separatore raggruppamento - Segno di moltiplicazione - Imposta segno di moltiplicazione - - Layout - Cellulare - Calcolatrice - Imposta layout per i pulsanti - - Feedback tattile - Attiva o disattiva la vibrazione su click dei pulsanti - - Breve - Media - Lunga - - Durata feedback tattile - Durata della vibrazione su click dei pulsanti - - Impossibile creare una costante vuota! - Risultato attuale non valido! - - Grafico - Da - A - - Swipe distanza per i pulsanti - Imposta distanza swipe per i pulsanti che supportano le azioni swipe + Imposta il tema per la calcolatrice + Cancella cronologia + Show/hide date + Le prossime costanti sono indefinite: {0}! + Nessun separatore + Apostrofo (\') + Spazio ( ) + Separatore raggruppamento + Imposta separatore raggruppamento + Segno di moltiplicazione + Imposta segno di moltiplicazione + Layout + Cellulare + Calcolatrice + Scientific (Big buttons) + Simple + Simple (Big buttons) + Imposta layout per i pulsanti + Feedback tattile + Attiva o disattiva la vibrazione su click dei pulsanti + Breve + Media + Lunga + Durata feedback tattile + Durata della vibrazione su click dei pulsanti + Impossibile creare una costante vuota! + Risultato attuale non valido! + Grafico + Da + A + Swipe distanza per i pulsanti + Imposta distanza swipe per i pulsanti che supportano le azioni swipe supplementare - - Commento - Salvato - Non salvato - Espressione copiato negli appunti! - Stato: - Commento: - Uso - Copia espressione - Copia risultato - Valore - Salvata (vedi scheda \'Storia salvate\') - Commento - Salva storia - Modificare la storia - Modificare - Storia salvati - - La storia era già salvato! - La storia deve essere salvato prima di modificare! - La storia è stata rimossa con successo! - La storia è stata salvata correttamente! - - Сopia descrizione - Сopia il valore - - \ No newline at end of file + Commento + Salvato + Non salvato + Espressione copiato negli appunti! + Stato: + Commento: + Uso + Use + Copia espressione + Copia risultato + Valore + Salvata (vedi scheda \'Storia salvate\') + Commento + Salva storia + Modificare la storia + Modificare + Storia salvati + La storia era già salvato! + La storia deve essere salvato prima di modificare! + La storia è stata rimossa con successo! + La storia è stata salvata correttamente! + Сopia descrizione + Сopia il valore + Thank you for choosing Calculator++!\n\nCalculator++ is a powerful tool for making + everyday calculations. + + Welcome + Show release notes + Defines if release notes popup window should appear after update to + the new version + + Defines the behaviour of the Back button + Use Back button as history prev + Purchase information will be reloaded from the server + Update purchase information + Warning + Error + Billing is not supported: you must have Google Checkout account linked to your Google + account and must be connected to the internet. + + Support the project + And remove the advertisement + Ad free option has been already purchased! + Purchasing… + Clearing… + Feedback + You have been using Calculator++ for some time \n + and it\'s important for us to know your opinion about application.\n\n + Please rate Calculator++ \non + Google Play,\n leave a comment or \ndiscuss application \non + Facebook + + Good news - I just released new application for Android called + Notes++.\n + If you\'re interesting in fast and easy way of making notes please follow the + link + and try Notes++! + + Angle units changed to \'%s\'! + Numeral base changed to \'%s\'! + Conversion tool + Convert to… + Convert to hex + Convert to bin + Convert to dec + Editor + Result + Other + Derivatives/Integrals + Calculator++ has crashed… + Calculator++ crash report + + Unfortunately, Calculator++ has crashed.\n\n + In order to fix the problem we need some information about it. It\'s highly recommended to send crash report via + email (after pressing \'Ok\' button you will see all sent data in the new window).\n\n + Do you want to send crash report? + + Graph settings + Interpolate function\'s graph + If checked cubic interpolation will be used in function + graph drawing + + Color of real part of functions graph + Sets color of real part functions graph + Color of imaginary part of functions graph + Sets color of imaginary part functions graph + White + Grey + Red + Blue + Green + Name + Value + Description + Parameters + Create function + Edit function + Name of function is not valid: name must start with letter, can contain + letters, digits and underscore. + + Function with same name already exists! + Function body could not be empty! + Function parameter should not be empty! + Do you really want to delete \'%s\' function? + Unable to create empty function! + Do not show this message until next session + Calculator++ warning + Arithmetic error occurred while plotting: %s + OK + Show calculation messages in dialog + If turned on if any message occurred while calculations + special dialog will be shown + + Fix + Default numeral system + Defines the default numeral system + Default numeral system \'%1$s\' differs from current \'%2$s\'. Forgot + to change back? + + Default angle units + Defines the default angle units + Default angle units \'%1$s\' differs from current \'%2$s\'. Forgot to + change back? + + Close + Calculator++ Widget (3x3) + Calculator++ Widget (3x4) + Calculator++ Widget (4x4) + Calculator++ Widget (4x5) + Click to open calculator in window mode + Calculator (in separate window) settings + Start on boot + If turned on Calculator++ will appear in notification bar after + device boot + + Show separate icon (require reboot) + If turned on second icon will be shown in applications\' list + + You can remove second icon in applications\' list from application + settings or by pressing next button + + This change may require reboot + 2D plot + 3D plot + Graph functions + Plot imaginary part of function + If checked imaginary part of function will be plotted + Monochrome + Color map (only 3D) + Solid (-----) + Dashed (- - -) + Dotted (. . .) + Dot-dashed (-.-.-) + Function plotter + Capture screenshot + Screenshot successfully saved: %1$s! + Screenshot cannot be saved as SD card is not mounted. Mount SD + card and try again! + + Line color type + Line color + Line style + Line width + Function settings + Function + Pinned + Visible + +plot + Unable to plot empty function! + Unable to plot: too many variables! + Graph range + Fullscreen + X Min + X Max + Y Min + Y Max + Invalid number! + Graph boundaries should not be the same! + Apply + Message + Continue + Supporting the project is easy and secure: purchase process is provided by Google + and all you need is a properly configured Google account.\n\n + Payment information is stored in Google servers with your Google account and you can easily use application on + several devices.\n\n + By clicking \'Continue\' button you will be redirected to the Google Play app to make the payment. + + Purchase + Thank you for supporting the application!\n\n It might take several + minutes until app will be informed about the purchase. You always can check information about the purchase in + your Google Account.\n + If you have any problems or questions feel free to contact me directly (contacts are available in + Main->Menu->About) + + diff --git a/android-app-core/res/values-it/text_vars.xml b/android-app-core/res/values-it/text_vars.xml index 6bc5f197..6b4be3e3 100644 --- a/android-app-core/res/values-it/text_vars.xml +++ b/android-app-core/res/values-it/text_vars.xml @@ -1,49 +1,26 @@ - - + + - - Rapporto tra la circonferenza di qualsiasi cerchio col suo diametro. Nota: - questa costante è l\'unità di misura dipende => rad: 3.14, deg: 180.0 + Rapporto tra la circonferenza di qualsiasi cerchio col suo diametro. Nota: + questa costante è l\'unità di misura dipende => rad: 3.14, deg: 180.0 - Rapporto tra la circonferenza di qualsiasi cerchio col suo diametro. Nota: - questa costante è l\'unità di misura indipendente => rad: 3.14, deg: 3.14 + Rapporto tra la circonferenza di qualsiasi cerchio col suo diametro. Nota: + questa costante è l\'unità di misura indipendente => rad: 3.14, deg: 3.14 - Unico numero reale tale che il valore della derivata (pendenza della retta + Unico numero reale tale che il valore della derivata (pendenza della retta tangente) della funzione f(x) = e^x nel punto x = 0 che è uguale a 1 - Unità immaginaria, definita come i^2 = -1 - Velocità della luce nel vuoto, m·s^-1 - La costante gravitazionale è una costante fisica empirica coinvolta nel calcolo + Unità immaginaria, definita come i^2 = -1 + Velocità della luce nel vuoto, m·s^-1 + La costante gravitazionale è una costante fisica empirica coinvolta nel calcolo dell\' attrazione gravitazionale tra gli oggetti con massa, m^3·kg^−1·s^−2 - Costante fisica che riflette la dimensione dei quanti di energia in meccanica + Costante fisica che riflette la dimensione dei quanti di energia in meccanica quantistica, J·s - Costante di riduzione di Planck, J·s - Non è un numero - Infinito - - Built-in - Mie - - \ No newline at end of file + Costante di riduzione di Planck, J·s + Non è un numero + Infinito + Built-in + Mie + diff --git a/android-app-core/res/values-pl/text_about.xml b/android-app-core/res/values-pl/text_about.xml new file mode 100644 index 00000000..9238791a --- /dev/null +++ b/android-app-core/res/values-pl/text_about.xml @@ -0,0 +1,23 @@ + + + + O aplikacji + Copyright © 2009–2013\n\nStworzona przez serso aka se.solovyev\n\n +Jesteśmy na Facebooku:http://facebook.com/calculatorpp\n\n +Program jest rozpowszechniany pod licencją Apache 2.0 License:\nkod źródłowy można znaleźć na\n +http://github.com\n\n +Po więcej informacji proszę\nkontaktować się z autorem poprzez email\n +se.solovyev@gmail.com +\nlub odwiedzić\nhttp://se.solovyev.org\n\n +Jeżeli chcesz wspomóc projekt,\n\nmożesz wykupić specjalną opcję w ustawieniach aplikacji\n\n +Jeżeli podoba Ci się aplikacja\noceń ją na 5 gwiazdek na\n +Google Play\n\n +Ten program używa następujących bibliotek otwartego oprogramowania:\n +Simple (XML serialization)\n +JSCL + This app is translated to Polish by: + + Informacje o wydaniu + "Informacje o wydaniu dla wersji " + http://www.facebook.com/calculatorpp + diff --git a/android-app-core/res/values-pl/text_functions.xml b/android-app-core/res/values-pl/text_functions.xml new file mode 100644 index 00000000..66a2aef1 --- /dev/null +++ b/android-app-core/res/values-pl/text_functions.xml @@ -0,0 +1,35 @@ + + + + Funkcje + Sinus trygonometryczny + Cosinus trygonometryczny + Tangens trygonometryczny + Cotangens trygonometryczny + Arcus sinus - funkcja odwrotna do funkcji sinus + Arcus cosinus - funkcja odwrotna do funkcji cosinus + Arcus tangens - funkcja odwrotna do funkcji tangens + Arcus cotangens - funkcja odwrotna do funkcji cotangens + Logarytm naturalny - logarytm o podstawie e + Logarytm dziesiętny - logarytm o podstawie 10 + Logarytm - logarytm o określonej podstawie + Funkcja wykładnicza + Pierwiastek kwadratowy + Pierwiastek sześcienny + Wartość bezwzględna argumentu + Znak argumentu (signum): -1, jeżeli argument jest mniejszy niż 0, 0, jeżeli równa się 0, 1, jeżeli jest większy od 0 + Równa się - wynik to 1, jeżeli oba argumenty są równe, w przeciwnym wypadku 0 + Mniejszy lub równy - wynik to 1, jeżeli oba argumenty są równe lub pierwszy jest mniejszy od drugiego, w przeciwnym wypadku 0 + Większy lub równy - wynik to 1, jeżeli oba argumenty są równe lub pierwszy jest większy od drugiego, w przeciwnym wypadku 0 + Nie równa się - wynik to 1, jeżeli oba argumenty nie są równe, w przeciwnym wypadku 0 + Mniejszy - wynik to 1, jeżeli pierwszy argument jest mniejszy od drugiego, w przeciwnym wypadku 0 + Większy - wynik to 1, jeżeli pierwszy argument jest większy od drugiego, w przeciwnym wypadku 0 + Zamienia stopnie na radiany: d - stopnie, m - minuty (domyślnie = 0), s - sekundy (domyślnie = 0) + Zamienia stopnie wyrażone w mierze stopniowej na system dziesiętny: d - stopnie, m - minuty (domyślnie = 0), s - sekundy (domyślnie = 0) + Zamienia radiany na stopnie + Trygonometryczne + Hiperboliczne + Relacje + Podstawowe + Moje + diff --git a/android-app-core/res/values-pl/text_operators.xml b/android-app-core/res/values-pl/text_operators.xml new file mode 100644 index 00000000..08b81184 --- /dev/null +++ b/android-app-core/res/values-pl/text_operators.xml @@ -0,0 +1,22 @@ + + + + Operatory + Operacja modulo wyznacza resztę z dzielenia \'x\' przez \'y\' + Sumuje funkcje \'f(i)\' po \'i\', zaczynając od \'od\', a kończąc na \'do\' + Mnoży funkcje \'f(i)\' po \'i\', zaczynając od \'od\', a kończąc na \'do\' + Oblicza pochodną stopnia \'stopień\' (domyślnie = 1) funkcji \'f(x)\' po zmiennej \'x\' i oblicza jej wartość w punkcie \'punkt_x\' (domyślnie = taki sam jak \'x\') + Oblicza całkę z funkcji \'f(x)\' po zmiennej \'x\' + Całkuje funkcję \'f(x)\' po zmiennej \'x\' od \'a\' do \'b\' + Oblicza silnię podanego wyrażenia + Oblicza silnię podwójną podanego wyrażenia + Oblicza wartość procentową podanego wyrażenia.\n +Przykłady:\n +100 + 50% = 150\n +100 * 50% = 50\n +100 + 100 * 50% * 50% = 125 + Zamienia stopnie na radiany.\n +Przykłady:\n +268° = 4.67748\n +30.21° = 0.52726 + diff --git a/android-app-core/res/values-pl/text_preferences.xml b/android-app-core/res/values-pl/text_preferences.xml new file mode 100644 index 00000000..8069abcd --- /dev/null +++ b/android-app-core/res/values-pl/text_preferences.xml @@ -0,0 +1,16 @@ + + + + Automatyczne obracanie ekranu + Ekran aplikacji będzie obracał się zgodnie z położeniem urządzenia + Pokaż przycisk \'=\' + Przycisk \'=\' pojawi się na ekranie + Ukryj podstawę systemu liczbowego + Znaki podstawy innych systemów liczbowych nie będą wyświetlane + Pokaż obliczenia pośrednie w historii + Wszystkie obliczenia będą widoczne w historii + Obliczenia podczas wpisywania + Obliczenia będą wykonywane automatycznie podczas wpisywania + Podświetlenie ekranu + Ekran będzie podświetlony przez cały czas używania aplikacji + diff --git a/android-app-core/res/values-pl/text_strings.xml b/android-app-core/res/values-pl/text_strings.xml new file mode 100644 index 00000000..78e365df --- /dev/null +++ b/android-app-core/res/values-pl/text_strings.xml @@ -0,0 +1,303 @@ + + + + Calculator++ + Calculator++ (tryb okna) + Calculator++ Darmowy + Calc++ + Ustawienia + Błąd + Wynik został skopiowany do schowka! + Ustawienia + Pomoc + Zmienne i stałe + Główne ustawienia + Ustawienia obliczeń + Ustawienia wyglądu + Inne ustawienia + Ustawienia przeciągania przycisków + Dół + Góra + Restart + cofnij + ponów + C + wyczyść + wklej + zmienne + Kopiuj + Stwórz wykres + Wykres + Podświetl wyrażenia + Zaokrąglanie wyniku + Włącza zaokrąglanie wyniku + Zawsze notacja naukowa + Wymusza użycie notacji naukowej na wyjściu (12.34E-12) + Dokładność wyniku + Maksymalny czas obliczeń + Jeśli obliczenia przekroczą określony limit, kalkulator zatrzyma się i zgłosi błąd + Wyjście + Dodaj + Anuluj + Zapisz + Usuń + Tak + Nie + Potwierdzenie usunięcia + Czy na pewno chcesz usunąć zmienną \'%s\'? + Nazwa + Wartość + Opis + Utwórz zmienną + Edytuj zmienną + Wartość musi być liczbą lub być pusta: jeśli masz parametry - stwórz funkcję zamiast tego! + Nazwa zmiennej pokrywa się z nazwą funkcji! + Zmienna o tej samej nazwie już istnieje! + Nazwa stałej jest nieprawidłowa: nazwa musi zaczynać się od litery, może zawierać litery, cyfry lub znak podkreślenia. + Zmienne systemowe nie mogą być zmienione! + Wprowadź wyrażenie + Naciśnij, aby skopiować + Kontynuuj + Historia + M + Historia jest pusta! + Historia + Znak \'%s\' nie może być użyty w nazwie zmiennej! + Jednostka wielkości kąta + Stopnie + Radiany + Grady + Turns + Określa jednostkę dla kątów wykorzystywaną w obliczeniach + Obecny system liczbowy + Określa system liczbowy wykorzystywany w obliczeniach + Dziesiętny + Szesnastkowy + Ósemkowy + Binarny + Motyw + Szary + Fioletowy + Jasnoniebieski + Niebieski Metro (domyślny) + Zielony Metro + Fioletowy Metro + Dokładność wyświetlanego wyniku (wszystkie obliczenia są wykonywane przy maksymalnej dokładności, niezależnie od tej opcji) + Toggles colouring and styling in calculator editor + Sets the theme for calculator + Wyczyść historię + Pokaż/ukryj datę + Następująca zmienna jest niezdefiniowana: {0}! + Bez grupowania + Apostrof (\') + Spacja ( ) + Grupowanie cyfr + Ustawia znak grupujący cyfry + Znak mnożenia + Ustawia znak mnożenia + Motyw + Naukowy (telefon) + Naukowy + Naukowy (Duże przyciski) + Prosty + Prosty (Duże przyciski) + Ustawia wygląd przycisków + Wibracja przy naciśnięciu + Włącza wibrację po naciśnięciu przycisku + Krótki + Średni + Długi + Czas trwania wibracji + Czas trwania wibracji + Nie można stworzyć pustej stałej! + Obecny wynik jest nieprawidłowy! + Wykres + Od + Do + Swipe distance for buttons + Sets swipe distance for buttons that support additional swipe actions + + Comment + Zapisano + Nie zapisano + Wyrażenie zostało skopiowane do schowka! + Status: + Comment: + Use + Use + Skopiuj wyrażenie + Skopiuj wynik + Wartość + Saved (see \'Saved history\' tab) + Comment + Zapisz historię + Modyfikuj historię + Modyfikuj + Zapisana historia + Historia została już zachowana! + Historia musi być zapisana przed edycją! + Historia została pomyślnie usunięta! + Historia została pomyślnie zapisana! + Skopiuj opis + Skopiuj wartość + Thank you for choosing Calculator++!\n\nCalculator++ is a powerful tool for making + everyday calculations. + + Witaj + Pokaż informacje o wydaniu + Defines if release notes popup window should appear after update to + the new version + + Defines the behaviour of the Back button + Use Back button as history prev + Purchase information will be reloaded from the server + Update purchase information + Ostrzeżenie + Błąd + Billing is not supported: you must have Google Checkout account linked to your Google + account and must be connected to the internet. + + Wspomóż projekt + I usuń reklamy + Opcja bez reklam została już zakupiona! + Kupowanie,,, + Clearing… + Feedback + You have been using Calculator++ for some time \n + and it\'s important for us to know your opinion about application.\n\n + Please rate Calculator++ \non + Google Play,\n leave a comment or \ndiscuss application \non + Facebook + + Good news - I just released new application for Android called + Notes++.\n + If you\'re interesting in fast and easy way of making notes please follow the + link + and try Notes++! + + Jednostka wielkości kąta zmieniona na \'%s\'! + System liczbowy zmieniony na \'%s\'! + Konwersja + Zamień na… + Zamień na hex + Zamień na bin + Zamień na dec + Edytor + Wynik + Inne + Pochodne/Całki + Calculator++ zawiesił się… + Calculator++ raport błędu + + Unfortunately, Calculator++ has crashed.\n\n + In order to fix the problem we need some information about it. It\'s highly recommended to send crash report via + email (after pressing \'Ok\' button you will see all sent data in the new window).\n\n + Do you want to send crash report? + + Ustawienia wykresu + Interpolacja wykresu funkcji + Do wykreślenia funkcji zostanie użyta interpolacja sześcienna + Kolor wykresu cześci rzeczywistej funkcji + Ustawia kolor wykresu cześci rzeczywistej funkcji + Kolor wykresu cześci urojonej funkcji + Ustawia kolor wykresu cześci urojonej funkcji + Biały + Szary + Czerwony + Niebieski + Zielony + Nazwa + Wartość + Opis + Parametry + Stwórz funkcję + Edytuj funkcję + Nazwa funkcji jest nieprawidłowa: nazwa musi zaczynać się od litery, może zawierać litery, cyfry i znak podkreślenia. + Function with same name already exists! + Function body could not be empty! + Function parameter should not be empty! + Czy na pewno chcesz usunąć funkcję \'%s\'? + Nie można utworzyć pustej funkcji! + Nie pokazuj tej wiadomości do czasu następnej sesji + Calculator++ ostrzeżenie + Wystąpił błąd obliczeniowy podczas wykreślania: %s + OK + Pokaż wiadomości o obliczeniach w oknie + Jeżeli pojawi się wiadomość podczas obliczeń, to zostanie ona wyświetlona w specjalnym oknie + Fix + Domyślny system liczbowy + Określa domyślny system liczbowy + Default numeral system \'%1$s\' differs from current \'%2$s\'. Forgot + to change back? + + Domyślna jednostka wielkości kąta + Określa domyślną jednostkę wielkości kąta + Default angle units \'%1$s\' differs from current \'%2$s\'. Forgot to + change back? + + Zamknij + Calculator++ Widżet (3x3) + Calculator++ Widżet (3x4) + Calculator++ Widżet (4x4) + Calculator++ Widżet (4x5) + Kliknij, aby otworzyć kalkulator w trybie okna + Ustawienia kalkulatora (w osobnym oknie) + Uruchom przy starcie systemu + If turned on Calculator++ will appear in notification bar after + device boot + + Pokaż oddzielną ikonę (wymagany restart) + Druga ikona pojawi się na liście aplikacji + Możesz usunąć drugą ikonę z listy aplikacji w ustawieniach lub naciskając następujący przycisk + Ta zmiana może wymagać ponownego uruchomienia + Wykres 2D + Wykres 3D + Graph functions + Wykreśl część urojoną funkcji + Część urojona funkcji będzie wykreślona + Monochrome + Color map (only 3D) + Stały (-----) + Przerywany (- - -) + Kropkowany (. . .) + Mieszany (-.-.-) + Function plotter + Zrób zrzut ekranu + Zrzut ekranu pomyślnie zapisany: %1$s! + Zrzut ekranu nie może zostać zapisany, gdy karta SD nie jest zamontowana. Zamontuj kartę SD i spróbuj ponownie! + Line color type + Kolor linii + Styl linii + Szerekość linii + Ustawienia funkcji + Funkcja + Pinned + Widoczny + +wykres + Nie można wykreślić pustej funkcji! + Nie można wyrysować: zbyt wiele zmiennych! + Zakres wykresu + Pełny ekran + X Min + X Max + Y Min + Y Max + Nieprawidłowy numer! + Granice wykresu nie powinny być identyczne! + Zastosuj + Wiadomość + Kontynuuj + Supporting the project is easy and secure: purchase process is provided by Google + and all you need is a properly configured Google account.\n\n + Payment information is stored in Google servers with your Google account and you can easily use application on + several devices.\n\n + By clicking \'Continue\' button you will be redirected to the Google Play app to make the payment. + + Zakup + Thank you for supporting the application!\n\n It might take several + minutes until app will be informed about the purchase. You always can check information about the purchase in + your Google Account.\n + If you have any problems or questions feel free to contact me directly (contacts are available in + Main->Menu->About) + + diff --git a/android-app-core/res/values-pl/text_vars.xml b/android-app-core/res/values-pl/text_vars.xml new file mode 100644 index 00000000..1188f314 --- /dev/null +++ b/android-app-core/res/values-pl/text_vars.xml @@ -0,0 +1,16 @@ + + + + Stosunek obwodu koła do jego średnicy. Uwaga: ta stała jest zależna od jednostki => rad: 3.14, deg: 180.0 + Stosunek obwodu koła do jego średnicy. Uwaga: ta stała jest niezależna od jednostki => rad: 3.14, deg: 3.14 + Liczba rzeczywista, taka że wartość pochodnej (nachylenia stycznej) funkcji f(x) = e^x w punkcie x = 0 wynosi 1 + Jednostka urojona, zdefiniowana, tak że i^2 = -1 + Prędkość światła w próżni, m·s^-1 + Stała grawitacji jest empiryczną stałą fizyczną służącą do obliczeń przyciągania grawitacyjnego między obiektami posiadającymi masę, m^3·kg^−1·s^−2 + Stała Plancka to stała fizyczna, która opisuje wielkość kwantów energii w mechanice kwantowej, J·s + Zredukowana stała Plancka, J·s + Nie jest liczbą + Nieskończoność + Wbudowane + Moje + diff --git a/android-app-core/res/values-pl/text_wizard.xml b/android-app-core/res/values-pl/text_wizard.xml new file mode 100644 index 00000000..70fc8f32 --- /dev/null +++ b/android-app-core/res/values-pl/text_wizard.xml @@ -0,0 +1,43 @@ + + + + Następny + Wstecz + Koniec + Zacznij konfigurację + Zoptymalizowany + Duże przyciski + Prosty + W trybie prostym tylko podstawowe funkcje będą dostępne na ekranie głównym. +Wynik jest zaokrąglony do 5 cyfr, a domyślną jednostką wielkości kąta są stopnie. + Inżynierski + W trybie inżynierskim specjalne funkcje będą dostępne na ekranie głównym. +Wynik nie jest zaokrąglony i jest przedstawiony w postaci inżynierskiej, a domyślną jednostką wielkości kąta są radiany. + Zacznij konfigurację + Świetnie! Stuknij w przycisk jeszcze raz, aby spróbować ponownie + Stuknij raz w przycisk poniżej, aby użyć 9 + Przeciągnij ze środka przycisku do góry, aby użyć % + Przeciągnij ze środka przycisku w lewo, aby użyć sin + Przeciągnij ze środka przycisku w dół, aby użyć ^2 + Witaj + Wybierz styl + Wybierz tryb + Kalkulator w osobnym oknie + Podstawy przeciągania po przycisku + Prawie gotowe! + Calculator++ jest darmowym i otwartym oprogramowaniem: wszystkie opcje są bezpłatne, a kod źródłowy można znaleźć w serwisie github. + + Istnieje kilka sposobów poprzez które możesz pomóc ulepszyć aplikację: + Wsparcie finansowe + Tłumaczenie + Rozwijanie kodu źródłowego + Calculator in separate window allows you to do calculations while + using other apps on your device + + Enable calculator in separate window (second icon will appear in the + apps list) + + Drag button is an exclusive feature of Calculator++ which provides + fast access to the secondary functions + + diff --git a/android-app-core/res/values-ru/text_about.xml b/android-app-core/res/values-ru/text_about.xml old mode 100755 new mode 100644 index ccaf6b0f..d7fec04f --- a/android-app-core/res/values-ru/text_about.xml +++ b/android-app-core/res/values-ru/text_about.xml @@ -1,30 +1,8 @@ - - + + - - О программе - - Copyright © 2009–2013\n\nПрограмма создана\nserso aka se.solovyev\n\n + О программе + Copyright © 2009–2013\n\nПрограмма создана\nserso aka se.solovyev\n\n Сайт приложения: https://vk.com/calculatorpp\n\n Эта программа с открытыми исходным кодом:\nон может быть найден на \n http://github.com\n\n @@ -38,8 +16,9 @@ Simple (XML serialization)\n JSCL - https://vk.com/calculatorpp - Примечания к выпуску - "Примечания к выпуску версии " - - \ No newline at end of file + Это приложение переведено на русский: + + Примечания к выпуску + "Примечания к выпуску версии " + https://vk.com/calculatorpp + diff --git a/android-app-core/res/values-ru/text_functions.xml b/android-app-core/res/values-ru/text_functions.xml old mode 100755 new mode 100644 index 9b5c3996..70b3e56c --- a/android-app-core/res/values-ru/text_functions.xml +++ b/android-app-core/res/values-ru/text_functions.xml @@ -1,25 +1,5 @@ - - + + Функции Тригонометрическая функция синус diff --git a/android-app-core/res/values-ru/text_operators.xml b/android-app-core/res/values-ru/text_operators.xml old mode 100755 new mode 100644 index 752c6ac4..09303561 --- a/android-app-core/res/values-ru/text_operators.xml +++ b/android-app-core/res/values-ru/text_operators.xml @@ -1,25 +1,5 @@ - - + + Операторы Возвращает остаток от деления \'x\' на \'y\' diff --git a/android-app-core/res/values-ru/text_preferences.xml b/android-app-core/res/values-ru/text_preferences.xml old mode 100755 new mode 100644 index 44b4b334..ac6cce55 --- a/android-app-core/res/values-ru/text_preferences.xml +++ b/android-app-core/res/values-ru/text_preferences.xml @@ -1,25 +1,5 @@ - - + + Автоповорот экрана Если включено, приложение будет поворачивать экран вместе с устройством diff --git a/android-app-core/res/values-ru/text_strings.xml b/android-app-core/res/values-ru/text_strings.xml old mode 100755 new mode 100644 index ad5fc505..ed37c983 --- a/android-app-core/res/values-ru/text_strings.xml +++ b/android-app-core/res/values-ru/text_strings.xml @@ -1,27 +1,5 @@ - - - + Калькулятор++ Калькулятор++ (В отдельном окне) @@ -44,7 +22,7 @@ назад вперёд C - clear + вставить переменные Копировать diff --git a/android-app-core/res/values-ru/text_vars.xml b/android-app-core/res/values-ru/text_vars.xml old mode 100755 new mode 100644 diff --git a/android-app-core/res/values-ru/text_wizard.xml b/android-app-core/res/values-ru/text_wizard.xml index ece05b48..fccbaa17 100644 --- a/android-app-core/res/values-ru/text_wizard.xml +++ b/android-app-core/res/values-ru/text_wizard.xml @@ -23,30 +23,13 @@ Калькулятор в отдельном окне Основы использования кнопок Ещё чуть-чуть! - Калькулятор++ - это бесплатное приложение с открытым исходным кодом: все функции являются бесплатными, исходный код можно найти на github. + Калькулятор ++ это бесплатное приложение с открытым исходным кодом: все функции являются бесплатными, исходный код можно найти на github. Есть несколько способов сделать приложение лучше: Пожертвовать деньги Перевести язык Поучавствовать в разработке - Оптимизированная - С большими кнопками - Простой - В простом режиме только базовая функциональность доступна на главном экране. Результат округляется до 5 знаков, градусы установлены единицами измерения углов по умолчанию. - Инженерный - В инженерном режиме дополнительные функции доступны на главном экране. Результат не округляется и представлен в инженерной нотации, радианы установлены единицами измерения углов по умолчанию. - Начать визард - Замечательно! Нажмите на кнопку ещё раз, чтобы повторить сначала - Нажмите на кнопку ниже для того, чтобы вопспользоваться 9 - Потяните из центра кнопки вниз для того, чтобы воспользоваться % - Потяните из центра кнопки влево для того, чтобы воспользоваться sin - Потяните из центра кнопки вниз для того, чтобы воспользоваться ^2 - Приветствие - Выберите раскладку - Выберите режим - Калькулятор в отдельном окне - Основы использования кнопок - Калькулятор в отдельном окне позволяет вам произодить вычисления не закрывая при этом другие приложения - Включить калькулятор в отдельном окне (вторая иконка появится в списке приложений) - Специально разработанные кнопки позволяют быстро и просто использовать дополнительные возможности калькулятора + Калькулятор в отдельном окне позволяет вам произодить вычисления не закрывая при этом другие приложения + Включить калькулятор в отдельном окне (вторая иконка появится в списке приложений) + Специально разработанные кнопки позволяют быстро и просто использовать дополнительные возможности калькулятора diff --git a/android-app-core/res/values-uk/text_about.xml b/android-app-core/res/values-uk/text_about.xml index 9c5df271..51572e37 100644 --- a/android-app-core/res/values-uk/text_about.xml +++ b/android-app-core/res/values-uk/text_about.xml @@ -1,49 +1,24 @@ - - + + - - Про програму - - Copyright (c) 2009-2011\n\nСтворено serso aka se.solovyev\n\n - Сайт програми:http://facebook.com/calculatorpp\n\n - Ця програма з відкритим вихідним кодом:\nйого можна знайти на \n + Про програму + Copyright © 2009–2013\n\nCreated by serso aka se.solovyev\n\n + We are on Facebook: http://facebook.com/calculatorpp\n\n + This program is distributed under Apache 2.0 License:\nsource code can be found on\n http://github.com\n\n - За детальною інформацією, будь ласка, звертайтеся до автора на пошту\n + For more information please\ncontact the author by email\n se.solovyev@gmail.com - \nабо відвідайте сайт\nhttp://se.solovyev.org\n\n - Якщо хочете підтримати проект фінансово,\nто ви можете купити спеціальну опцію у налаштуваннях програми\n\n - Якщо вам сподобалася програма,\n то оцініть її у 5 зірочок на\n + \nor visit\nhttp://se.solovyev.org\n\n + If you want to support the project\n\nyou can buy a special option from application preferences\n\n + If you like the application\nrate it with 5 stars on\n Google Play\n\n - Дякую усім, хто переклав Калькулятор++ на інші мови:\n - італійську - Gabriele Ravanetti\n - іспанську - Jordi Luna\n - українську - Андрій Бандура\n\n - Ця програма використовує наступні відкриті бібліотеки:\n + This application uses next open source libraries:\n Simple (XML serialization)\n JSCL - - Замітки до випуску - "Замітки до випуску версії " - + This app is translated to Ukrainian by: + + Замітки до випуску + "Замітки до випуску версії " + http://www.facebook.com/calculatorpp diff --git a/android-app-core/res/values-uk/text_functions.xml b/android-app-core/res/values-uk/text_functions.xml index 5165bf24..44ae7a13 100644 --- a/android-app-core/res/values-uk/text_functions.xml +++ b/android-app-core/res/values-uk/text_functions.xml @@ -1,76 +1,50 @@ - - + + - - Функції - - Тригонометрична фунція синус. - Тригонометрична функція косинус. - Тригонометрична функція тангенс. - Тригонометрична функція котангенс. - Арксинус - обернена функція до синуса. - Арккосинус - обернена функція до косинуса. - Арктангенс - обернена функція до тангенса. - Арккотангенс - обернена функція до котангенса. - Натуральний логариф - логарифм за основою e. - Десятковий логарифм - логарифм за основою 10. - Логарифм - логарифм за заданою основою. - Експонента. - Квадратний корінь. - Кубічний корінь. - Абсолютне значення (модуль) аргумента. - Знак аргумента: -1, якщо аргумент менший за 0, 0, якщо рівний 0, 1, якщо - більший за 0. + Функції + Тригонометрична фунція синус + Тригонометрична функція косинус + Тригонометрична функція тангенс + Тригонометрична функція котангенс + Arcsine - inverse sine function + Arccosine - inverse cosine function + Arctangent - inverse tangent function + Arccotangent - inverse cotangent function + Натуральний логариф - логарифм за основою e + Десятковий логарифм - логарифм за основою 10 + Логарифм - логарифм за заданою основою + Експонента + Квадратний корінь + Кубічний корінь + Gives absolute value of an argument + Gives the sign of an argument: -1 if argument is less than 0, 0 + if equals to 0, 1 if more than 0 - Фунцкія рівності - дає результат 1, якщо обидва аргументи рівні, інакше 0. + Фунцкія рівності - дає результат 1, якщо обидва аргументи рівні, інакше 0 - Функція менше-або-дорівнює - дає результат 1, якщо обидва аргументи рівні або - перший менший другого, інакше 0. + Lesser-or-equals function - gives 1 if two arguments are equals or first is less + than second, 0 otherwise - Функція більше-або-дорівнює - дає результат 1, якщо обидва аргументи рівні або - перший більший другого, інакше 0. + Greater-or-equals function - gives 1 if two arguments are equals or first is + greater than second, 0 otherwise - Функція не-дорівнює - дає результат 1, якщо обидва аргументи не рівні, інакше - 0. + Not-equals function - gives 1 if two arguments are not equals, 0 otherwise - Функція менше - дає результат 1, якщо перший аргумент менший другого, інакше - 0. + Lesser function - gives 1 if first argument is less than second, 0 otherwise - Функція більше - дає результат 1, якщо перший аргумент більший другого, інакше - 0. + Greater function - gives 1 if first argument is greater than second, 0 + otherwise - Перетворює градуси у радіани: d - градуси, m - мінути (по замовчуванню = 0), s - - секунди (за замовчуванням = 0). + Converts degrees into radians: d - degrees, m - minutes (default = 0), s - + seconds (default = 0) - Перетворює градуси із шістдесяткової системи у десяткову: d - градуси, m - - мінути (за замовчуванням = 0), s - секунди (за замовчуванням = 0). + Converts degrees from DMS notation to decimal notation: d - degrees, m - + minutes (default = 0), s - seconds (default = 0) - Перетворює радіани у градуси. - - Тригонометричні - Гіперболічні - Порівняння - Загальні - Власні - + Converts radians into degrees + Тригонометричні + Гіперболічні + Порівняння + Загальні + Власні diff --git a/android-app-core/res/values-uk/text_operators.xml b/android-app-core/res/values-uk/text_operators.xml index 8f94ebb4..b9bcfd04 100644 --- a/android-app-core/res/values-uk/text_operators.xml +++ b/android-app-core/res/values-uk/text_operators.xml @@ -1,52 +1,29 @@ - - + + - - Оператори - - Обчислює остачу від ділення \'x\' на \'y\'. - Сумує функції \'f(i)\', де змінна \'i\' міняється від \'from\' до \'to\'. + Оператори + Modulo operation finds the remainder of division of \'x\' by \'y\' + Sums functions \'f(i)\', iterating through \'i\' from \'from\' to \'to\' - Обчислює добуток функцій \'f(i)\', де змінна \'i\' міняється від \'from\' до - \'to\'. + Gives product of functions \'f(i)\', iterating through \'i\' from \'from\' + to \'to\' - Повертає похідну порядку \'order\' (по замовчуванню = 1) функції \'f(x)\' - по змінній \'x\' та обчислює її значення у точці \'x_point\' (за замовчуванням = така ж як \'x\'). + Gives derivative of order \'order\' (default = 1) of functions \'f(x)\' + by \'x\' variable and calculates at point \'x_point\' (default = same as \'x\') - Повертає інтеграл функції \'f(x)\' по змінній \'x\'. - Інтегрує функцію \'f(x)\' по змінній \'x\' від \'a\' до \'b\'. - - Обчислює факторіал від попереднього виразу. - Обчислює подвійний факторіал від попереднього виразу. - Обчислює відсоток від попереднього виразу.\nПриклади:\n + Gives integral of function \'f(x)\' by \'x\' variable + Integrates function \'f(x)\' by \'x\' variable from \'a\' to \'b\' + + Gives the factorial of the expression before + Gives the double factorial of the expression before + Обчислює відсоток від попереднього виразу.\nПриклади:\n 100 + 50% = 150\n 100 * 50% = 50\n 100 + 100 * 50% * 50% = 125 - Перетворює градуси у радіани.\n + Перетворює градуси у радіани.\n Приклади:\n 268° = 4.67748\n 30.21° = 0.52726 - diff --git a/android-app-core/res/values-uk/text_preferences.xml b/android-app-core/res/values-uk/text_preferences.xml index 4e58e57c..e82aaafb 100644 --- a/android-app-core/res/values-uk/text_preferences.xml +++ b/android-app-core/res/values-uk/text_preferences.xml @@ -1,35 +1,21 @@ - - + + - Перемикач автоматичного повороту екрану - Якщо включено, то калькулятор будет автоматично міняти орієнтацію екрану - - - Показувати кнопку дорівнює - Якщо включено, то кнопка дорівнює буде показана - - Не показувати цифри із інших систем числения - Якщо включено, то цифри із іншиих систем числення будуть + Auto-rotate screen + If turned on app will rotate screen with device + Показувати кнопку дорівнює + Якщо включено, то кнопка дорівнює буде показана + Не показувати цифри із інших систем числения + Якщо включено, то цифри із іншиих систем числення будуть приховані - \ No newline at end of file + Show intermediate calculations in history + If turned on all calculations will be shown in the + history screen + + Result is calculated while typing + If turned on calculations are done automatically while typing + Prevent screen from fading + If turned on screen will not fade while using the app + + diff --git a/android-app-core/res/values-uk/text_strings.xml b/android-app-core/res/values-uk/text_strings.xml index 7d0325c9..e83034d4 100644 --- a/android-app-core/res/values-uk/text_strings.xml +++ b/android-app-core/res/values-uk/text_strings.xml @@ -1,242 +1,322 @@ - - - + - Калькулятор++ - Калькулятор++ Free - Кальк++ - Налаштування - Помилка - Результат скопійовано у буфер! - Налаштування - Допомога - Змінні та константи - - Основні налаштування - Налаштування обчислень - Налаштування вигляду - Інші налаштування - Налаштування кнопок - - - Вниз - Вгору - Перезавантаження - - назад - вперед - C - вилучити - вставити - змінні - - Копіювати - Побудувати графік - Графік - - Підсвітка виразів - Заокруглювати результат - Включити/вимкнути заокруглення результату - Завжди експоненціальна форма - Якщо включено, то результат буде записано лише у експоненціальній + Калькулятор++ + Calculator++ (Window mode) + Калькулятор++ Free + Кальк++ + Налаштування + Помилка + Result has been copied to the clipboard! + Налаштування + Допомога + Змінні та константи + Основні налаштування + Налаштування обчислень + Налаштування вигляду + Інші налаштування + Налаштування кнопок + Вниз + Вгору + Перезавантаження + назад + вперед + C + вилучити + вставити + змінні + Копіювати + Побудувати графік + Графік + Підсвітка виразів + Заокруглювати результат + Включити/вимкнути заокруглення результату + Завжди експоненціальна форма + Якщо включено, то результат буде записано лише у експоненціальній формі (12.34E-12) - Точність результату - Максимальний час обчислень - Якщо тривалість обчислень перевищить встановлену межу, то + Точність результату + Максимальний час обчислень + Якщо тривалість обчислень перевищить встановлену межу, то калькулятор зупиниться з помилкою - Вийти - Додати - Скасувати - Зберегти - Вилучити - Так - Ні - Підтвердження вилучення - Ви дійсно хочете вилучити змінну \'%s\'? - Ім’я - Значення - Опис - Створити змінну - Редагувати змінну - - Значення може бути порожнім або числом! - Ім’я змінної не може бути зарезервованим системним ім’ям! - Змінна з таким іменем вже існує! - Невірне ім’я змінної: воно мусить починатися з букви, може містити букви, цифри + Вийти + Додати + Скасувати + Зберегти + Вилучити + Так + Ні + Підтвердження вилучення + Ви дійсно хочете вилучити змінну \'%s\'? + Ім’я + Значення + Опис + Створити змінну + Редагувати змінну + Значення може бути порожнім або числом! + Ім’я змінної не може бути зарезервованим системним ім’ям! + Змінна з таким іменем вже існує! + Невірне ім’я змінної: воно мусить починатися з букви, може містити букви, цифри та знак підкреслення (_). - Системну змінну не можна змінювати! - - Введіть новий вираз - натисніть для копіювання - Продовжити - Історія - M - Іторія порожня! - Іторія - Символ \'%s\' не допустимий у імені змінної! - - Одиниці виміру кутів - Градуси - Радіани - Градуси - Обороти - Визначає типову одиницю виміру кутів. - - Системи числення - Визначає типову систему числення для усіх введених чисел. - Десяткова - Шістнадцяткова - Вісімкова - Двійкова - - Тема - Сіра - Фіолетова - Блакитна - Метро Синя (типова) - Метро Зелена - Метро Пурпурова - Точність результату (усі обчислення проводяться максимально точно) + Системну змінну не можна змінювати! + Введіть новий вираз + натисніть для копіювання + Продовжити + Історія + M + Іторія порожня! + Іторія + Символ \'%s\' не допустимий у імені змінної! + Одиниці виміру кутів + Градуси + Радіани + Градуси + Обороти + Визначає типову одиницю виміру кутів. + Системи числення + Визначає типову систему числення для усіх введених чисел. + Десяткова + Шістнадцяткова + Вісімкова + Двійкова + Тема + Сіра + Фіолетова + Блакитна + Метро Синя (типова) + Метро Зелена + Метро Пурпурова + Точність результату (усі обчислення проводяться максимально точно) - Включити/вимкнути підсвітку у редакторі калькулятора - Встановити тему калькулятора - Очистити історію - наступні сталі невизначені: {0}! - - Не використовувати роздільник класів - Апостроф (\') - Пропуск ( ) - Роздільник класів - Задає роздільник класів - Знак множення - Задає знак множення - - Розкладка - Наукова (телефон) - Наукова - Проста - Задає розкладку кнопок - - Вібрація при натисканні - Включити/виключити вібрацію при натисканні - - Коротка - Середня - Велика - - Тривалість вібрації - Тривалість вібрації на натискання - - Не можна створити порожню константу! - Поточний результат не допустимий! - - Графік - Від - До - - Відстань розмаху (свайпу) для кнопок - Задає відстань розмаху для кнопок, які підтримують додаткові дії для + Включити/вимкнути підсвітку у редакторі калькулятора + Встановити тему калькулятора + Очистити історію + Show/hide date + наступні сталі невизначені: {0}! + Не використовувати роздільник класів + Апостроф (\') + Пропуск ( ) + Роздільник класів + Задає роздільник класів + Знак множення + Задає знак множення + Розкладка + Наукова (телефон) + Наукова + Scientific (Big buttons) + Проста + Simple (Big buttons) + Задає розкладку кнопок + Вібрація при натисканні + Включити/виключити вібрацію при натисканні + Коротка + Середня + Велика + Тривалість вібрації + Тривалість вібрації на натискання + Не можна створити порожню константу! + Поточний результат не допустимий! + Графік + Від + До + Відстань розмаху (свайпу) для кнопок + Задає відстань розмаху для кнопок, які підтримують додаткові дії для свайпу - - Коментар - Збережено - Не збережено - Вираз скопійовано до буфера! - Статус: - Коментар: - Використовувати - Вик. - Копіювати вираз - Копіювати результат - Значення - Збережено (див. вкладку \'Збережена історія\') - Коментар - Зберегти історію - Змінити історію - Змінити - Збережена історія - - Історія вже збережена! - Історію необхідно зберегти перед редагуванням! - Історія успішно видалена! - Історія успішно збережена! - - Копіювати опис - Копіювати значення - - Дякуємо вам за вибір Калькулятор++!\n\nКалькулятор++ - це потужний інструмент для - проведення щоденних розрахунків.\n\nЩоб вилучити рекламу та підтримати проект ви можете вибрати спеціальну опцію - у налаштуваннях програми.\n\nПеред початком робота рекомендується прочитати ЧаП та підказки для використання - усіх можливостей програми (натисніть кнопку Меню і тоді Допомога) - - Вітаємо - - Показувати замітки до випуску - Визначає, чи показувати спливаюче вікно з примітками до випуску + Коментар + Збережено + Не збережено + Вираз скопійовано до буфера! + Статус: + Коментар: + Використовувати + Вик. + Копіювати вираз + Копіювати результат + Значення + Збережено (див. вкладку \'Збережена історія\') + Коментар + Зберегти історію + Змінити історію + Змінити + Збережена історія + Історія вже збережена! + Історію необхідно зберегти перед редагуванням! + Історія успішно видалена! + Історія успішно збережена! + Копіювати опис + Копіювати значення + Дякуємо вам за вибір Калькулятор++!\n\nКалькулятор++ - це потужний інструмент для + проведення щоденних розрахунків. + Вітаємо + Показувати замітки до випуску + Визначає, чи показувати спливаюче вікно з примітками до випуску після оновлення до нової версії - - Визначити поведінку кнопку Назад - Використовувати кнопку Назад як назад по історії - - Інформація про купівлю буде оновлена із сервера - Очистити інформацію про купівлю - - Увага - Помилка - Біллінг не підтримується: ви повинні мати обліковий запис Google Checkout, пов’язаний + Визначити поведінку кнопку Назад + Використовувати кнопку Назад як назад по історії + Інформація про купівлю буде оновлена із сервера + Очистити інформацію про купівлю + Увага + Помилка + Біллінг не підтримується: ви повинні мати обліковий запис Google Checkout, пов’язаний з вашим обліковим записом Google і мати підключення до Інтернету. - - Підтримайте проект - і позбудьтеся реклами! - - Опція вже куплена! - Купуємо… - Очищаємо… - - Зворотній зв’язок - Ви вже використовуєте Калькулятор++ деякий час \n + Підтримайте проект + і позбудьтеся реклами! + Опція вже куплена! + Купуємо… + Очищаємо… + Зворотній зв’язок + Ви вже використовуєте Калькулятор++ деякий час \n і для нас важливо знати вашу думку про програму.\n\n Будь ласка, оцініть Калькулятор++ \nна Google Play,\n залиште коментар або \nобговоріть програму \nна Facebook - - Одиниці виміру кутів змінено на \'%s\'! - Система числення змінена на \'%s\'! - Перетворення чисел - - Перетворити в… - - Перетворити в hex - Перетворити в bin - Перетворити в dec - + Good news - I just released new application for Android called + Notes++.\n + If you\'re interesting in fast and easy way of making notes please follow the + link + and try Notes++! + + Одиниці виміру кутів змінено на \'%s\'! + Система числення змінена на \'%s\'! + Перетворення чисел + Перетворити в… + Перетворити в hex + Перетворити в bin + Перетворити в dec + Editor + Result + Other + Derivatives/Integrals + Calculator++ has crashed… + Calculator++ crash report + + Unfortunately, Calculator++ has crashed.\n\n + In order to fix the problem we need some information about it. It\'s highly recommended to send crash report via + email (after pressing \'Ok\' button you will see all sent data in the new window).\n\n + Do you want to send crash report? + + Graph settings + Interpolate function\'s graph + If checked cubic interpolation will be used in function + graph drawing + + Color of real part of functions graph + Sets color of real part functions graph + Color of imaginary part of functions graph + Sets color of imaginary part functions graph + White + Grey + Red + Blue + Green + Name + Value + Description + Parameters + Create function + Edit function + Name of function is not valid: name must start with letter, can contain + letters, digits and underscore. + + Function with same name already exists! + Function body could not be empty! + Function parameter should not be empty! + Do you really want to delete \'%s\' function? + Unable to create empty function! + Do not show this message until next session + Calculator++ warning + Arithmetic error occurred while plotting: %s + OK + Show calculation messages in dialog + If turned on if any message occurred while calculations + special dialog will be shown + + Fix + Default numeral system + Defines the default numeral system + Default numeral system \'%1$s\' differs from current \'%2$s\'. Forgot + to change back? + + Default angle units + Defines the default angle units + Default angle units \'%1$s\' differs from current \'%2$s\'. Forgot to + change back? + + Close + Calculator++ Widget (3x3) + Calculator++ Widget (3x4) + Calculator++ Widget (4x4) + Calculator++ Widget (4x5) + Click to open calculator in window mode + Calculator (in separate window) settings + Start on boot + If turned on Calculator++ will appear in notification bar after + device boot + + Show separate icon (require reboot) + If turned on second icon will be shown in applications\' list + + You can remove second icon in applications\' list from application + settings or by pressing next button + + This change may require reboot + 2D plot + 3D plot + Graph functions + Plot imaginary part of function + If checked imaginary part of function will be plotted + Monochrome + Color map (only 3D) + Solid (-----) + Dashed (- - -) + Dotted (. . .) + Dot-dashed (-.-.-) + Function plotter + Capture screenshot + Screenshot successfully saved: %1$s! + Screenshot cannot be saved as SD card is not mounted. Mount SD + card and try again! + + Line color type + Line color + Line style + Line width + Function settings + Function + Pinned + Visible + +plot + Unable to plot empty function! + Unable to plot: too many variables! + Graph range + Fullscreen + X Min + X Max + Y Min + Y Max + Invalid number! + Graph boundaries should not be the same! + Apply + Message + Continue + Supporting the project is easy and secure: purchase process is provided by Google + and all you need is a properly configured Google account.\n\n + Payment information is stored in Google servers with your Google account and you can easily use application on + several devices.\n\n + By clicking \'Continue\' button you will be redirected to the Google Play app to make the payment. + + Purchase + Thank you for supporting the application!\n\n It might take several + minutes until app will be informed about the purchase. You always can check information about the purchase in + your Google Account.\n + If you have any problems or questions feel free to contact me directly (contacts are available in + Main->Menu->About) + diff --git a/android-app-core/res/values-uk/text_vars.xml b/android-app-core/res/values-uk/text_vars.xml index c8df59e5..317f2181 100644 --- a/android-app-core/res/values-uk/text_vars.xml +++ b/android-app-core/res/values-uk/text_vars.xml @@ -1,49 +1,26 @@ - - + + - - Відношення довжини кола до діаметру. Увага: ця стала залежить від одиниць виміру - кутів => rad: 3.14, deg: 180.0 + Відношення довжини кола до діаметру. Увага: ця стала залежить від одиниць виміру + кутів => rad: 3.14, deg: 180.0 - Відношення довжини кола до діаметру. Увага: ця стала не залежить від одиниць - виміру кутів => rad: 3.14, deg: 3.14 + Відношення довжини кола до діаметру. Увага: ця стала не залежить від одиниць + виміру кутів => rad: 3.14, deg: 3.14 - стала e - дійсне число таке, що похідна функції (кутовий коефіцієнт дотичної) + стала e - дійсне число таке, що похідна функції (кутовий коефіцієнт дотичної) f(x) = e^x в точці x = 0 дорівнює 1 - Уявна одиниця, визначається як i^2 = −1 - Швидкість світла у вакуумі, м·с^-1 - Гравітаційна стала - емпірична фізична стала, необхідна для розрахунку сили + Уявна одиниця, визначається як i^2 = −1 + Швидкість світла у вакуумі, м·с^-1 + Гравітаційна стала - емпірична фізична стала, необхідна для розрахунку сили гравітаційної взаємодії між двома об’єктами з масою, м^3·кг^−1·с^−2 - Стала Планка - коефіцієнт, який пов’язує величину енергії електромагнітного + Стала Планка - коефіцієнт, який пов’язує величину енергії електромагнітного випромінюювання з його частотою, Дж·с - Зведена стала Планка, Дж·с - Не число - Нескінченність - - Вбудовані - Власні - + Зведена стала Планка, Дж·с + Не число + Нескінченність + Вбудовані + Власні diff --git a/android-app-core/res/values-zh-rtw/text_about.xml b/android-app-core/res/values-zh-rtw/text_about.xml index dc5de466..ea24d719 100644 --- a/android-app-core/res/values-zh-rtw/text_about.xml +++ b/android-app-core/res/values-zh-rtw/text_about.xml @@ -1,50 +1,24 @@ - - + + - - 關於 - - Copyright (c) 2009-2011\n\nCreated by serso aka se.solovyev\n\n - 程式網站:http://facebook.com/calculatorpp\n\n - 此程式為開放源碼軟體:\n原始碼位於\nhttp://github.com\n\n - 如果您需要更多資訊\n請寄信至作者信箱\n + 關於 + Copyright © 2009–2013\n\nCreated by serso aka se.solovyev\n\n + We are on Facebook: http://facebook.com/calculatorpp\n\n + This program is distributed under Apache 2.0 License:\nsource code can be found on\n + http://github.com\n\n + For more information please\ncontact the author by email\n se.solovyev@gmail.com - \n或是造訪\nhttp://se.solovyev.org\n\n - 如果您想要支持此專案\n\n您可以從程式設定頁面中購買一個特別的選項\n\n - 如果您喜歡這個程式\n請在 - Google Play - 中將它評等為五顆星\n\n - 感謝以下 Calculator++ 的翻譯者:\n - 義大利文 - Gabriele Ravanetti\n - 西班牙文 - Jordi Luna\n - 烏克蘭文 - Андрій Бандура\n\n - 此程式使用以下開放源碼的函式庫:\n - Simple (XML 序列化)\n + \nor visit\nhttp://se.solovyev.org\n\n + If you want to support the project\n\nyou can buy a special option from application preferences\n\n + If you like the application\nrate it with 5 stars on\n + Google Play\n\n + This application uses next open source libraries:\n + Simple (XML serialization)\n JSCL - - 發行公告 - "發行公告版本 " - + This app is translated to Chinese by: + + 發行公告 + "發行公告版本 " + http://www.facebook.com/calculatorpp - diff --git a/android-app-core/res/values-zh-rtw/text_functions.xml b/android-app-core/res/values-zh-rtw/text_functions.xml index 484c35e7..26468890 100644 --- a/android-app-core/res/values-zh-rtw/text_functions.xml +++ b/android-app-core/res/values-zh-rtw/text_functions.xml @@ -1,59 +1,49 @@ - - + + - - 函數 - - 三角正弦函數. - 三角餘弦函數. - 三角正切函數. - 三角餘切函數. - Arcsine - sin 的反函數. - Arccosine - cos 的反函數. - Arctangent - tan 的反函數. - Arccotangent - cot 的反函數. - 自然對數 - 以e為底的指數. - 以10為底的對數. - 以指定的數為底數的對數. - 指數函數. - 平方根. - 立方根. - 取絕對值. - 取正負號: 傳回 -1 若參數小於0, 0 若參數等於 0, 1 若參數大於 0. - 相等 - 傳回 1 若兩參數相等, 否則傳回 0. - 小於或等於 - 傳回 1 若兩參數相等或第一個參數小於第二個參數, 否則傳回 0. - 大於或等於 - 傳回 1 若兩參數相等或第一個參數大於第二個參數, 否則傳回 0. - 不等於 - 傳回 1 若兩參數不相等, 否則傳回 0. - 小於 - 傳回 1 若第一個參數小於第二個參數, 否則傳回 0. - 大於 - 傳回 1 若第一個參數大於第二個參數, 否則傳回 0. - 將角度轉為弳度: d - 角, m - 分 (預設為 0), s - 秒角 (預設為 0). - 將 DMS 表示法轉換為十進位表示法: d - 角, m - 分 (預設為 0), s - seconds (預設為 0). - 將弳度轉為角度. - - 三角函數 - 雙曲函數 - 比較函數 - 常用函數 - 自訂函數 - + 函數 + Trigonometric sine function + Trigonometric cosine function + Trigonometric tangent function + Trigonometric cotangent function + Arcsine - inverse sine function + Arccosine - inverse cosine function + Arctangent - inverse tangent function + Arccotangent - inverse cotangent function + Natural logarithm - logarithm to base e + Decadic logarithm - logarithm to base 10 + Logarithm - logarithm the specified base + Exponential function + Square root function + Cubic root function + Gives absolute value of an argument + Gives the sign of an argument: -1 if argument is less than 0, 0 + if equals to 0, 1 if more than 0 + + Equals function - gives 1 if two arguments are equals, 0 otherwise + Lesser-or-equals function - gives 1 if two arguments are equals or first is less + than second, 0 otherwise + + Greater-or-equals function - gives 1 if two arguments are equals or first is + greater than second, 0 otherwise + + Not-equals function - gives 1 if two arguments are not equals, 0 otherwise + + Lesser function - gives 1 if first argument is less than second, 0 otherwise + + Greater function - gives 1 if first argument is greater than second, 0 + otherwise + + Converts degrees into radians: d - degrees, m - minutes (default = 0), s - + seconds (default = 0) + + Converts degrees from DMS notation to decimal notation: d - degrees, m - + minutes (default = 0), s - seconds (default = 0) + + Converts radians into degrees + 三角函數 + 雙曲函數 + 比較函數 + 常用函數 + 自訂函數 diff --git a/android-app-core/res/values-zh-rtw/text_operators.xml b/android-app-core/res/values-zh-rtw/text_operators.xml index 660cb402..c9636999 100644 --- a/android-app-core/res/values-zh-rtw/text_operators.xml +++ b/android-app-core/res/values-zh-rtw/text_operators.xml @@ -1,49 +1,29 @@ - - + + - - 運算子 - - 取 \'x\' 除以 \'y\' 的餘數. - 計算 f(i) 的和, i 從 \'from\' 到 \'to\'. - 計算 \'f(i)\' 的積, i 從 \'from\' 到 \'to\'. - 計算 \'f(x)\' 對 \'x\' 的第 \'order\' 階微分(預設為 1) 在 \'x_point\' 的值 (預設 = - \'x\'). + 運算子 + Modulo operation finds the remainder of division of \'x\' by \'y\' + Sums functions \'f(i)\', iterating through \'i\' from \'from\' to \'to\' - 計算 \'f(x)\' 對 \'x\' 的積分. - 計算 \'f(x)\' 對 \'x\' 從 \'a\' 到 \'b\' 的定積分. - - 計算符號之前的數的階乘. - 計算符號之前的數的雙階乘. - 百分比.\n例:\n + Gives product of functions \'f(i)\', iterating through \'i\' from \'from\' + to \'to\' + + Gives derivative of order \'order\' (default = 1) of functions \'f(x)\' + by \'x\' variable and calculates at point \'x_point\' (default = same as \'x\') + + Gives integral of function \'f(x)\' by \'x\' variable + Integrates function \'f(x)\' by \'x\' variable from \'a\' to \'b\' + + Gives the factorial of the expression before + Gives the double factorial of the expression before + 百分比.\n例:\n 100 + 50% = 150\n 100 * 50% = 50\n 100 + 100 * 50% * 50% = 125 - 將角度轉換為弳度.\n + 將角度轉換為弳度.\n 例:\n 268° = 4.67748\n 30.21° = 0.52726 - diff --git a/android-app-core/res/values-zh-rtw/text_preferences.xml b/android-app-core/res/values-zh-rtw/text_preferences.xml index 9465d273..5709ad50 100644 --- a/android-app-core/res/values-zh-rtw/text_preferences.xml +++ b/android-app-core/res/values-zh-rtw/text_preferences.xml @@ -1,32 +1,19 @@ - - + + - 自動切換螢幕方向 - 是否自動切換螢幕顯示的方向 - - 顯示「等於」按鈕 - 是否顯示「等於」按鈕 - - 隱藏其他進位的數字 - 是否隱藏目前進位制以外的數字鍵 + Auto-rotate screen + If turned on app will rotate screen with device + 顯示「等於」按鈕 + 是否顯示「等於」按鈕 + 隱藏其他進位的數字 + 是否隱藏目前進位制以外的數字鍵 + Show intermediate calculations in history + If turned on all calculations will be shown in the + history screen + + Result is calculated while typing + If turned on calculations are done automatically while typing + Prevent screen from fading + If turned on screen will not fade while using the app + diff --git a/android-app-core/res/values-zh-rtw/text_strings.xml b/android-app-core/res/values-zh-rtw/text_strings.xml index 776ae11c..6129f135 100644 --- a/android-app-core/res/values-zh-rtw/text_strings.xml +++ b/android-app-core/res/values-zh-rtw/text_strings.xml @@ -1,212 +1,164 @@ - - - + - Calculator++ - Calculator++ Free - Calc++ - 設定 - 錯誤 - 答案已複製到剪貼簿! - 設定 - 說明 - 變數與常數 - - 主要設定 - 計算設定 - 外觀設定 - 其他設定 - 拖曳按鈕設定 - - - - - 重置 - - 復原 - 重作 - C - 清除 - 貼上 - 變數 - - 複製 - 繪圖 - 圖表 - - 語法標示計算式 - 四捨五入 - 切換答案四捨五入 - 永遠使用科學記號 - 開啟此選項,則答案將永遠使用科學記號表示 (例: 12.34E-12) - 答案小數點後位數 - 計算時間限制 - 如果計算超過時間, 程式將顯示錯誤並停止計算 - 離開 - 新增 - 取消 - 儲存 - 移除 - - - 確認移除 - 您真的要移除變數 \'%s\' 嗎? - 名稱 - - 描述 - 新增變數 - 編輯變數 - - 值必須是數字或是空白! - 變數名稱與函數名稱衝突! - 已存在相同名稱的變數! - 常數名稱不正確: 名稱必須由英文字母開頭, 後面接著英文字母、數字或底線 - 無法修改系統變數! - - 輸入新的運算式 - 按下複製 - 繼續 - 紀錄 - M - 沒有紀錄! - 紀錄 - 變數名稱裡面不可使用字元 \'%s\' - - 角度單位 - 角度 - 弳度 - 梯度 - - 設定角度的預設單位 - - 進位制 - 設定預設的進位制 - 十進位 - 十六進位 - 八進位 - 二進位 - - 主題 - 灰色 - 紫羅蘭色 - 淺藍色 - 藍色 (預設) - 綠色 - 紫色 - 答案顯示的精確度 (不管這個設定為何, 所有的計算都會使用最大的精確度) - 是否開啟計算式的語法標示 - 設定程式主題 - 清除紀錄 - 未定義的常數: {0}! - - - 單引號 (\') - 空格 ( ) - 分隔符號 - 設定分隔符號 - 乘號 - 設定乘號 - - 按鍵布局 - 科學計算 (手機) - 科學計算 - 簡單 - 設定按鍵布局 - - 觸控回饋 - 開啟/關閉按下按鈕時的振動 - - - - - - 觸控回饋長度 - 按下按鈕時振動的時間長度 - - 無法建立空白的常數! - 計算結果不正確! - - 圖表 - - - - 設定滑動距離 - 設定支援滑動的按鈕的滑動距離 - - 備註 - 已儲存 - 未儲存 - 計算式已複製到剪接簿! - 狀態: - 備註: - 使用 - 使用 - 複製計算式 - 複製結果 - - 已儲存 (見 \'已存紀錄\' 頁籤) - 備註 - 儲存紀錄 - 修改紀錄 - 修改 - 已存紀錄 - - 紀錄已儲存! - 編輯紀錄之前必須先儲存! - 成功移除紀錄! - 成功儲存紀錄! - - 複製描述 - 複製值 - - 感謝您選擇 Calculator++!\n\nCalculator++ - 是一個強大的計算工具. + Calculator++ + Calculator++ (Window mode) + Calculator++ Free + Calc++ + 設定 + 錯誤 + Result has been copied to the clipboard! + 設定 + 說明 + 變數與常數 + 主要設定 + 計算設定 + 外觀設定 + 其他設定 + 拖曳按鈕設定 + + + 重置 + 復原 + 重作 + C + 清除 + 貼上 + 變數 + 複製 + 繪圖 + 圖表 + 語法標示計算式 + 四捨五入 + 切換答案四捨五入 + 永遠使用科學記號 + 開啟此選項,則答案將永遠使用科學記號表示 (例: 12.34E-12) + 答案小數點後位數 + 計算時間限制 + 如果計算超過時間, 程式將顯示錯誤並停止計算 + 離開 + 新增 + 取消 + 儲存 + 移除 + + + 確認移除 + 您真的要移除變數 \'%s\' 嗎? + 名稱 + + 描述 + 新增變數 + 編輯變數 + 值必須是數字或是空白! + 變數名稱與函數名稱衝突! + 已存在相同名稱的變數! + 常數名稱不正確: 名稱必須由英文字母開頭, 後面接著英文字母、數字或底線 + 無法修改系統變數! + 輸入新的運算式 + 按下複製 + 繼續 + 紀錄 + M + 沒有紀錄! + 紀錄 + 變數名稱裡面不可使用字元 \'%s\' + 角度單位 + 角度 + 弳度 + 梯度 + + 設定角度的預設單位 + 進位制 + 設定預設的進位制 + 十進位 + 十六進位 + 八進位 + 二進位 + 主題 + 灰色 + 紫羅蘭色 + 淺藍色 + 藍色 (預設) + 綠色 + 紫色 + 答案顯示的精確度 (不管這個設定為何, 所有的計算都會使用最大的精確度) + 是否開啟計算式的語法標示 + 設定程式主題 + 清除紀錄 + Show/hide date + 未定義的常數: {0}! + + 單引號 (\') + 空格 ( ) + 分隔符號 + 設定分隔符號 + 乘號 + 設定乘號 + 按鍵布局 + 科學計算 (手機) + 科學計算 + Scientific (Big buttons) + 簡單 + Simple (Big buttons) + 設定按鍵布局 + 觸控回饋 + 開啟/關閉按下按鈕時的振動 + + + + 觸控回饋長度 + 按下按鈕時振動的時間長度 + 無法建立空白的常數! + 計算結果不正確! + 圖表 + + + 設定滑動距離 + 設定支援滑動的按鈕的滑動距離 + 備註 + 已儲存 + 未儲存 + 計算式已複製到剪接簿! + 狀態: + 備註: + 使用 + 使用 + 複製計算式 + 複製結果 + + 已儲存 (見 \'已存紀錄\' 頁籤) + 備註 + 儲存紀錄 + 修改紀錄 + 修改 + 已存紀錄 + 紀錄已儲存! + 編輯紀錄之前必須先儲存! + 成功移除紀錄! + 成功儲存紀錄! + 複製描述 + 複製值 + Thank you for choosing Calculator++!\n\nCalculator++ is a powerful tool for making + everyday calculations. - 歡迎 - - 顯示發行公告 - 是否在升級程式之後顯示發行公告 - - 設定退出鍵的功用 - 退出鍵回到上一筆紀錄 - - 從伺服器下載付費資訊 - 清除付費資訊 - - 警告 - 錯誤 - 不支援付費: 您必須要將您的 Google Checkout 帳號連結到您的 Google 帳號並連上網際網路. - - 支持此專案 - 並移除廣告 - - 已購買無廣告選項! - 正在購買… - 正在清除… - - 回饋 - 您已使用 Calculator++ 一段時間了 \n + 歡迎 + 顯示發行公告 + 是否在升級程式之後顯示發行公告 + 設定退出鍵的功用 + 退出鍵回到上一筆紀錄 + 從伺服器下載付費資訊 + 清除付費資訊 + 警告 + 錯誤 + 不支援付費: 您必須要將您的 Google Checkout 帳號連結到您的 Google 帳號並連上網際網路. + 支持此專案 + 並移除廣告 + 已購買無廣告選項! + 正在購買… + 正在清除… + 回饋 + 您已使用 Calculator++ 一段時間了 \n 我們很希望可以瞭解您對這個軟體的意見.\n\n 請在 Google Play @@ -214,22 +166,146 @@ Facebook 上討論. - - 好消息 - 我剛發行了一個新的 Android 應用程式, 叫做 + 好消息 - 我剛發行了一個新的 Android 應用程式, 叫做 Notes++.\n 如果您正在尋找能快速簡單作筆記的程式, 請點選 此連結 試試看 Notes++! - - 角度單位已設定為 \'%s\'! - 進位制已設定為 \'%s\'! - 轉換工具 - - 轉換為… - - 轉換為十六進位 - 轉換為二進位 - 轉換為十進位 - + 角度單位已設定為 \'%s\'! + 進位制已設定為 \'%s\'! + 轉換工具 + 轉換為… + 轉換為十六進位 + 轉換為二進位 + 轉換為十進位 + Editor + Result + Other + Derivatives/Integrals + Calculator++ has crashed… + Calculator++ crash report + + Unfortunately, Calculator++ has crashed.\n\n + In order to fix the problem we need some information about it. It\'s highly recommended to send crash report via + email (after pressing \'Ok\' button you will see all sent data in the new window).\n\n + Do you want to send crash report? + + Graph settings + Interpolate function\'s graph + If checked cubic interpolation will be used in function + graph drawing + + Color of real part of functions graph + Sets color of real part functions graph + Color of imaginary part of functions graph + Sets color of imaginary part functions graph + White + Grey + Red + Blue + Green + Name + Value + Description + Parameters + Create function + Edit function + Name of function is not valid: name must start with letter, can contain + letters, digits and underscore. + + Function with same name already exists! + Function body could not be empty! + Function parameter should not be empty! + Do you really want to delete \'%s\' function? + Unable to create empty function! + Do not show this message until next session + Calculator++ warning + Arithmetic error occurred while plotting: %s + OK + Show calculation messages in dialog + If turned on if any message occurred while calculations + special dialog will be shown + + Fix + Default numeral system + Defines the default numeral system + Default numeral system \'%1$s\' differs from current \'%2$s\'. Forgot + to change back? + + Default angle units + Defines the default angle units + Default angle units \'%1$s\' differs from current \'%2$s\'. Forgot to + change back? + + Close + Calculator++ Widget (3x3) + Calculator++ Widget (3x4) + Calculator++ Widget (4x4) + Calculator++ Widget (4x5) + Click to open calculator in window mode + Calculator (in separate window) settings + Start on boot + If turned on Calculator++ will appear in notification bar after + device boot + + Show separate icon (require reboot) + If turned on second icon will be shown in applications\' list + + You can remove second icon in applications\' list from application + settings or by pressing next button + + This change may require reboot + 2D plot + 3D plot + Graph functions + Plot imaginary part of function + If checked imaginary part of function will be plotted + Monochrome + Color map (only 3D) + Solid (-----) + Dashed (- - -) + Dotted (. . .) + Dot-dashed (-.-.-) + Function plotter + Capture screenshot + Screenshot successfully saved: %1$s! + Screenshot cannot be saved as SD card is not mounted. Mount SD + card and try again! + + Line color type + Line color + Line style + Line width + Function settings + Function + Pinned + Visible + +plot + Unable to plot empty function! + Unable to plot: too many variables! + Graph range + Fullscreen + X Min + X Max + Y Min + Y Max + Invalid number! + Graph boundaries should not be the same! + Apply + Message + Continue + Supporting the project is easy and secure: purchase process is provided by Google + and all you need is a properly configured Google account.\n\n + Payment information is stored in Google servers with your Google account and you can easily use application on + several devices.\n\n + By clicking \'Continue\' button you will be redirected to the Google Play app to make the payment. + + Purchase + Thank you for supporting the application!\n\n It might take several + minutes until app will be informed about the purchase. You always can check information about the purchase in + your Google Account.\n + If you have any problems or questions feel free to contact me directly (contacts are available in + Main->Menu->About) + diff --git a/android-app-core/res/values-zh-rtw/text_vars.xml b/android-app-core/res/values-zh-rtw/text_vars.xml index 11d09bc7..6c9f4f4b 100644 --- a/android-app-core/res/values-zh-rtw/text_vars.xml +++ b/android-app-core/res/values-zh-rtw/text_vars.xml @@ -1,39 +1,16 @@ - - + + - - 圓周長與直徑之比值. 注意: 此常數會隨著角度單位改變 => rad: 3.14, deg: 180.0 - 圓周長與直徑之比值. 注意: 此常數會隨著角度單位改變 => rad: 3.14, deg: 180.0 - 唯一一個使得 f(x) = e^x 的微分(切線斜率) 在 x = 0 時為 1 的自然數. - 虛數單位, 定義為 i^2 = -1. - 真空中的光速, 單位為 m·s^-1 - 重力常數, 計算物質間萬有引力時需要用到的常數(實驗值), 單位為 m^3·kg^−1·s^−2 - 普朗克常數, 用來描述量子大小的物理常數, 單位為 J·s - 約化普朗克常數(普朗克常數/(2*pi)), 單位為 J·s - NaN - 無限大 - - 內建 - 自訂 - + 圓周長與直徑之比值. 注意: 此常數會隨著角度單位改變 => rad: 3.14, deg: 180.0 + 圓周長與直徑之比值. 注意: 此常數會隨著角度單位改變 => rad: 3.14, deg: 180.0 + 唯一一個使得 f(x) = e^x 的微分(切線斜率) 在 x = 0 時為 1 的自然數. + 虛數單位, 定義為 i^2 = -1. + 真空中的光速, 單位為 m·s^-1 + 重力常數, 計算物質間萬有引力時需要用到的常數(實驗值), 單位為 m^3·kg^−1·s^−2 + 普朗克常數, 用來描述量子大小的物理常數, 單位為 J·s + 約化普朗克常數(普朗克常數/(2*pi)), 單位為 J·s + NaN + 無限大 + 內建 + 自訂 diff --git a/android-app-core/res/values/text_about.xml b/android-app-core/res/values/text_about.xml old mode 100755 new mode 100644 index 5353d662..87b2f255 --- a/android-app-core/res/values/text_about.xml +++ b/android-app-core/res/values/text_about.xml @@ -1,10 +1,8 @@ - - About - - Copyright © 2009–2013\n\nCreated by serso aka se.solovyev\n\n + About + Copyright © 2009–2013\n\nCreated by serso aka se.solovyev\n\n We are on Facebook: http://facebook.com/calculatorpp\n\n This program is distributed under Apache 2.0 License:\nsource code can be found on\n http://github.com\n\n @@ -18,12 +16,9 @@ Simple (XML serialization)\n JSCL - - This app is translated to English by: - - - Release notes - "Release notes for version " - http://www.facebook.com/calculatorpp - - \ No newline at end of file + This app is translated to English by: + Sergey Solovyev + Release notes + "Release notes for version " + http://www.facebook.com/calculatorpp + diff --git a/android-app-core/res/values/text_functions.xml b/android-app-core/res/values/text_functions.xml old mode 100755 new mode 100644 diff --git a/android-app-core/res/values/text_operators.xml b/android-app-core/res/values/text_operators.xml old mode 100755 new mode 100644 diff --git a/android-app-core/res/values/text_preferences.xml b/android-app-core/res/values/text_preferences.xml old mode 100755 new mode 100644 index 261c35d9..de5a73ce --- a/android-app-core/res/values/text_preferences.xml +++ b/android-app-core/res/values/text_preferences.xml @@ -5,7 +5,7 @@ If turned on app will rotate screen with device Show equals button If turned on equals button is shown - Hide numeral base digits + Hide digits of other numeral systems If turned on numeral base digits of other numeral bases will be hidden diff --git a/android-app-core/res/values/text_strings.xml b/android-app-core/res/values/text_strings.xml old mode 100755 new mode 100644 index 24d50ce6..1b8dc6ad --- a/android-app-core/res/values/text_strings.xml +++ b/android-app-core/res/values/text_strings.xml @@ -22,7 +22,7 @@ undo redo C - clear + paste vars Copy @@ -90,7 +90,7 @@ Metro Blue (Default) Metro Green Metro Purple - Precision of result value (all calculations are done with maximum + Precision of the result value (all calculations are done with maximum precision regardless of the value of this option) Toggles colouring and styling in the calculator editor @@ -159,7 +159,7 @@ the new version Defines the behaviour of the Back button - Use Back button as history prev + Use Back button for previous history Purchase information will be reloaded from the server Update purchase information Warning @@ -176,17 +176,17 @@ You have been using Calculator++ for some time \n and it\'s important for us to know your opinion about application.\n\n Please rate Calculator++ \non - Google Play,\n leave a comment or \ndiscuss application \non + Google Play,\n leave a comment or \ndiscuss the application \non Facebook - Good news - I just released new application for Android called + Good news - I have just released a new application for Android called Notes++.\n - If you\'re interesting in fast and easy way of making notes please follow the + If you\'re interested in a fast and easy way of making notes please follow the link and try Notes++! - Angle units changed to \'%s\'! - Numeral base changed to \'%s\'! + Angle units have been changed to \'%s\'! + Numeral base has been changed to \'%s\'! Conversion tool Convert to… Convert to hex @@ -198,11 +198,10 @@ Derivatives/Integrals Calculator++ has crashed… Calculator++ crash report - - Unfortunately, Calculator++ has crashed.\n\n - In order to fix the problem we need some information about it. It\'s highly recommended to send crash report via + Unfortunately, Calculator++ has crashed.\n\n + In order to fix the problem we need some information about it. It\'s highly recommended to send a crash report via email (after pressing \'Ok\' button you will see all sent data in the new window).\n\n - Do you want to send crash report? + Do you want to send a crash report? Graph settings Interpolate function\'s graph @@ -310,13 +309,13 @@ Continue Supporting the project is easy and secure: purchase process is provided by Google and all you need is a properly configured Google account.\n\n - Payment information is stored in Google servers with your Google account and you can easily use application on + Payment information is stored in Google servers with your Google account and you can easily use this application on several devices.\n\n By clicking \'Continue\' button you will be redirected to the Google Play app to make the payment. Purchase - Thank you for supporting the application!\n\n It might take several - minutes until app will be informed about the purchase. You always can check information about the purchase in + Thank you for supporting this application!\n\n It might take several + minutes until the app will be informed about the purchase. You can always check the information about the purchase in your Google Account.\n If you have any problems or questions feel free to contact me directly (contacts are available in Main->Menu->About) diff --git a/android-app-core/res/values/text_vars.xml b/android-app-core/res/values/text_vars.xml old mode 100755 new mode 100644 diff --git a/android-app-core/res/values/text_wizard.xml b/android-app-core/res/values/text_wizard.xml old mode 100755 new mode 100644 index f18a5df1..349a6b59 --- a/android-app-core/res/values/text_wizard.xml +++ b/android-app-core/res/values/text_wizard.xml @@ -34,17 +34,16 @@ There are several ways how you can help to make this app better: - Donating money - Translating - Contributing source code - Calculator in separate window allows you to do calculations while + Donating money + Translating + Contributing source code + Calculator in separate window allows you to do calculations while using other apps on your device - Enable calculator in separate window (second icon will appear in the + Enable calculator in separate window (second icon will appear in the apps list) - Drag button is an exclusive feature of Calculator++ which provides + Drag button is an exclusive feature of Calculator++ which provides fast access to the secondary functions - - \ No newline at end of file + diff --git a/core/src/main/resources/org/solovyev/android/calculator/messages.properties b/core/src/main/resources/org/solovyev/android/calculator/messages.properties old mode 100755 new mode 100644 index 7d2ba9b0..b38a94fa --- a/core/src/main/resources/org/solovyev/android/calculator/messages.properties +++ b/core/src/main/resources/org/solovyev/android/calculator/messages.properties @@ -1,3 +1,4 @@ +#X-Generator: crowdin.net msg_1=Arithmetic error occurred\: {0} msg_2=Expression is too complex msg_3=Execution time is too long - check the expression @@ -9,4 +10,4 @@ msg_7=Some user data could not be loaded. Please contact developers.\n\nUnable t syntax_error=Error result_copied=Result has been copied to the clipboard\! text_copied=Text has been copied to the clipboard\! -ans_description=Last calculated value \ No newline at end of file +ans_description=Last calculated value diff --git a/core/src/main/resources/org/solovyev/android/calculator/messages_de.properties b/core/src/main/resources/org/solovyev/android/calculator/messages_de.properties new file mode 100644 index 00000000..5cd2de4b --- /dev/null +++ b/core/src/main/resources/org/solovyev/android/calculator/messages_de.properties @@ -0,0 +1,13 @@ +#X-Generator: crowdin.net +msg_1=Rechnenfehler aufgetreten\: {0} +msg_2=Ausdruck zu komplex +msg_3=Ausf\u00FChrungszeit zu lang - \u00FCberpr\u00FCfe den Ausdruck +msg_4=Auswertung wurde abgebrochen +msg_5=Parameter f\u00FCr die Funktion fehlen\: {0} +msg_6=Im Ausdruck wurde eine Endlosschleife entdeckt +msg_7=Einige Benutzerdaten k\u00F6nnen nicht geladen werden. Wenden Sie sich bitte mit den untenstehenden Informationen an die Enwickler.\n\nKann nicht geladen werden\:\n{0} + +syntax_error=Fehler +result_copied=Ergebnis wurde in die Zwischenablage kopiert\! +text_copied=Text wurde in die Zwischenablage kopiert\! +ans_description=Letzter berechneter Wert diff --git a/core/src/main/resources/org/solovyev/android/calculator/messages_pl.properties b/core/src/main/resources/org/solovyev/android/calculator/messages_pl.properties new file mode 100644 index 00000000..ca806123 --- /dev/null +++ b/core/src/main/resources/org/solovyev/android/calculator/messages_pl.properties @@ -0,0 +1,13 @@ +#X-Generator: crowdin.net +msg_1=Wyst\u0105pi\u0142 b\u0142\u0105d w obliczeniach\: {0} +msg_2=Zbyt z\u0142o\u017cone wyra\u017cenie +msg_3=Zbyt d\u0142ugi czas oblicze\u0144 - sprawd\u017a wyra\u017cenie +msg_4=Przetwarzanie zosta\u0142o anulowane +msg_5=Nie okre\u015blono parametr\u00f3w dla funkcji\: {0} +msg_6=Wykryto niesko\u0144czon\u0105 p\u0119tl\u0119 w wyra\u017ceniu +msg_7=Nie mo\u017cna wczyta\u0107 niekt\u00f3rych danych u\u017cytkownika. Prosz\u0119 skontaktowa\u0107 si\u0119 z autorem podaj\u0105c poni\u017csz\u0105 informacj\u0119.\n\nNie mo\u017cna wczyta\u0107\:\n{0} + +syntax_error=B\u0142\u0105d +result_copied=Wynik zosta\u0142 skopiowany do schowka\! +text_copied=Tekst zosta\u0142 skopiowany do schowka\! +ans_description=Ostatnia obliczona warto\u015b\u0107 diff --git a/core/src/main/resources/org/solovyev/android/calculator/messages_ru.properties b/core/src/main/resources/org/solovyev/android/calculator/messages_ru.properties old mode 100755 new mode 100644 index c35891d0..4e1350b1 --- a/core/src/main/resources/org/solovyev/android/calculator/messages_ru.properties +++ b/core/src/main/resources/org/solovyev/android/calculator/messages_ru.properties @@ -1,3 +1,4 @@ +#X-Generator: crowdin.net msg_1=\u0410\u0440\u0438\u0444\u043c\u0435\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u043e\u0448\u0438\u0431\u043a\u0430\: {0} msg_2=\u0421\u043b\u0438\u0448\u043a\u043e\u043c \u0441\u043b\u043e\u0436\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 msg_3=\u0412\u044b\u0447\u0438\u0441\u043b\u0435\u043d\u0438\u0435 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0437\u0430\u043d\u0438\u043c\u0430\u0435\u0442 \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438 - \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 @@ -9,4 +10,4 @@ msg_7=\u041d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u043e\u043b\ syntax_error=\u041e\u0448\u0438\u0431\u043a\u0430 result_copied=\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 \u0431\u044b\u043b \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d \u0432 \u0431\u0443\u0444\u0435\u0440 \u043e\u0431\u043c\u0435\u043d\u0430\! text_copied=\u0422\u0435\u043a\u0441\u0442 \u0431\u044b\u043b \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d \u0432 \u0431\u0443\u0444\u0435\u0440 \u043e\u0431\u043c\u0435\u043d\u0430\! -ans_description=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439 \u043f\u043e\u0441\u0447\u0438\u0442\u0430\u043d\u043d\u044b\u0439 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 \ No newline at end of file +ans_description=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439 \u043f\u043e\u0441\u0447\u0438\u0442\u0430\u043d\u043d\u044b\u0439 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 diff --git a/core/src/main/resources/org/solovyev/android/calculator/messages_uk.properties b/core/src/main/resources/org/solovyev/android/calculator/messages_uk.properties index cc7a9df8..02b87347 100644 --- a/core/src/main/resources/org/solovyev/android/calculator/messages_uk.properties +++ b/core/src/main/resources/org/solovyev/android/calculator/messages_uk.properties @@ -1,9 +1,11 @@ -msg_1=Арифметична помилка: {0} -msg_2=Надто складний вираз -msg_3=Обчислення виразу займає багато часу - перевірте вираз -msg_4=Обчислення скасовано -msg_5=Параметри не визначені для функції: {0} -msg_6=Нескінченний цикл виявлено у виразі - перевірте вираз +#X-Generator: crowdin.net +msg_1=\u0410\u0440\u0438\u0444\u043C\u0435\u0442\u0438\u0447\u043D\u0430 \u043F\u043E\u043C\u0438\u043B\u043A\u0430\: {0} +msg_2=\u041D\u0430\u0434\u0442\u043E \u0441\u043A\u043B\u0430\u0434\u043D\u0438\u0439 \u0432\u0438\u0440\u0430\u0437 +msg_3=\u041E\u0431\u0447\u0438\u0441\u043B\u0435\u043D\u043D\u044F \u0432\u0438\u0440\u0430\u0437\u0443 \u0437\u0430\u0439\u043C\u0430\u0454 \u0431\u0430\u0433\u0430\u0442\u043E \u0447\u0430\u0441\u0443 - \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u0442\u0435 \u0432\u0438\u0440\u0430\u0437 +msg_4=\u041E\u0431\u0447\u0438\u0441\u043B\u0435\u043D\u043D\u044F \u0441\u043A\u0430\u0441\u043E\u0432\u0430\u043D\u043E +msg_5=\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0438 \u043D\u0435 \u0432\u0438\u0437\u043D\u0430\u0447\u0435\u043D\u0456 \u0434\u043B\u044F \u0444\u0443\u043D\u043A\u0446\u0456\u0457\: {0} +msg_6=\u041D\u0435\u0441\u043A\u0456\u043D\u0447\u0435\u043D\u043D\u0438\u0439 \u0446\u0438\u043A\u043B \u0432\u0438\u044F\u0432\u043B\u0435\u043D\u043E \u0443 \u0432\u0438\u0440\u0430\u0437\u0456 - \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u0442\u0435 \u0432\u0438\u0440\u0430\u0437 +msg_7=Some user data could not be loaded. Please contact developers with information below.\n\nUnable to load\:\n{0} -syntax_error=Помилка -result_copied=Результат скопійовано у буфер! \ No newline at end of file +syntax_error=\u041F\u043E\u043C\u0438\u043B\u043A\u0430 +result_copied=\u0420\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442 \u0441\u043A\u043E\u043F\u0456\u0439\u043E\u0432\u0430\u043D\u043E \u0443 \u0431\u0443\u0444\u0435\u0440! \ No newline at end of file diff --git a/core/src/main/resources/org/solovyev/android/calculator/messages_zh.properties b/core/src/main/resources/org/solovyev/android/calculator/messages_zh.properties index b452e2f1..6c0a9747 100644 --- a/core/src/main/resources/org/solovyev/android/calculator/messages_zh.properties +++ b/core/src/main/resources/org/solovyev/android/calculator/messages_zh.properties @@ -1,9 +1,11 @@ -msg_1=計算錯誤: {0} -msg_2=計算式過於複雜 -msg_3=執行逾時 - 請檢查計算式 -msg_4=計算已取消 -msg_5=未指定函數參數: {0} -msg_6=計算式包含無窮迴圈 +#X-Generator: crowdin.net +msg_1=\u8A08\u7B97\u932F\u8AA4\: {0} +msg_2=\u8A08\u7B97\u5F0F\u904E\u65BC\u8907\u96DC +msg_3=\u57F7\u884C\u903E\u6642 - \u8ACB\u6AA2\u67E5\u8A08\u7B97\u5F0F +msg_4=\u8A08\u7B97\u5DF2\u53D6\u6D88 +msg_5=\u672A\u6307\u5B9A\u51FD\u6578\u53C3\u6578\: {0} +msg_6=\u8A08\u7B97\u5F0F\u5305\u542B\u7121\u7AAE\u8FF4\u5708 +msg_7=Some user data could not be loaded. Please contact developers with information below.\n\nUnable to load\:\n{0} -syntax_error=錯誤 -result_copied=答案已複製到剪貼簿! \ No newline at end of file +syntax_error=\u932F\u8AA4 +result_copied=\u7B54\u6848\u5DF2\u8907\u88FD\u5230\u526A\u8CBC\u7C3F! \ No newline at end of file