diff --git a/README.md b/README.md index 4591da1b8..7631d7716 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,7 @@ Version History | Version | Date | Comment | |---------|------|---------| +| v0.9.4 | 06.06.2015 | Bug fixes | | v0.9.3 | 15.05.2015 | Phidget 1051, [Hottop KN-8828B-2K+](http://artisan-roasterscope.blogspot.de/2015/05/hottop-kn-8828b-2k.html), one extra background curve, bug fixes | | v0.9.2 | 16.01.2015 | Bug fixes | | v0.9.1 | 03.01.2015 | [Acaia](http://acaia.co/) scale support, QR code, bug fixes | diff --git a/README.txt b/README.txt index b4f74e1de..c1a8a7fa2 100644 --- a/README.txt +++ b/README.txt @@ -175,6 +175,9 @@ Artisan uses the following libraries in unmodified forms: VERSION HISTORY +v0.9.3 (6.6.2015) +- bug fixes + v0.9.3 (15.5.2015) - adds Phidget 1051 support - adds Hottop KN-8828B-2K+ support diff --git a/artisanlib/__init__.py b/artisanlib/__init__.py index 2ac6ad40b..25bdaf2ae 100755 --- a/artisanlib/__init__.py +++ b/artisanlib/__init__.py @@ -1,3 +1,3 @@ -__version__ = '0.9.3' +__version__ = '0.9.4' #__revision__ = ''.join(list(filter(str.isdigit, "$Revision$"))) -__revision__ = '3' \ No newline at end of file +__revision__ = '0' \ No newline at end of file diff --git a/artisanlib/main.py b/artisanlib/main.py index 3fe779dad..3066390f5 100644 --- a/artisanlib/main.py +++ b/artisanlib/main.py @@ -3475,7 +3475,7 @@ def redraw(self, recomputeAllDeltas=True, smooth=False): #if recorder on - if self.flagon: + if self.flagon and self.eventsshowflag: #update to last event if Nevents: aw.etypeComboBox.setCurrentIndex(self.specialeventstype[Nevents-1]) @@ -14882,13 +14882,15 @@ def HottopControlOff(self): aw.button_10.setStyleSheet(aw.pushbuttonstyles["PID"]) def HottopControlOn(self): - # start drum motor - aw.qmc.hottop_SET_DRUM_MOTOR = 1 - aw.button_10.setStyleSheet(aw.pushbuttonstyles["PIDactive"]) - if not self.HottopControlActive: - aw.sendmessage(QApplication.translate("Message","Hottop control turned on", None, QApplication.UnicodeUTF8)) - self.HottopControlActive = True - self.sendHottopControl() + pass +# deactivated for now due to safety concerns +# # start drum motor +# aw.qmc.hottop_SET_DRUM_MOTOR = 1 +# aw.button_10.setStyleSheet(aw.pushbuttonstyles["PIDactive"]) +# if not self.HottopControlActive: +# aw.sendmessage(QApplication.translate("Message","Hottop control turned on", None, QApplication.UnicodeUTF8)) +# self.HottopControlActive = True +# self.sendHottopControl() def sendHottopControl(self): if self.HottopControlActive: @@ -23634,6 +23636,9 @@ def __init__(self): self.YOCTOchan2 = None #stores the id of the meter HH506RA as a string self.HH506RAid = "X" + #MS6514 variables + self.MS6514PrevTemp1 = -1 + self.MS6514PrevTemp2 = -1 #select PID type that controls the roaster. # Reads/Controls ET self.controlETpid = [0,1] # index0: type of pid: 0 = FujiPXG, 1 = FujiPXR3, 2 = DTA @@ -35393,12 +35398,15 @@ def main(): # font fix for OS X 10.9 try: v, _, _ = platform.mac_ver() - v = float('.'.join(v.split('.')[:2])) - if v >= 10.10: - # fix Mac OS X 10.10 (Yosemite) font issue + #v = float('.'.join(v.split('.')[:2])) + v = v.split('.')[:2] + major = int(v[0]) + minor = int(v[1]) + if major >= 10 and minor >= 10: #v >= 10.10: + # fix Mac OS X 10.10 (Yosemite) font issue [seems not to have any effect!?] # https://bugreports.qt-project.org/browse/QTBUG-40833 QFont.insertSubstitution(".Helvetica Neue DeskInterface", "Helvetica Neue") - elif v >= 10.9: + if major >= 10 and minor >= 9: #v >= 10.9: # fix Mac OS X 10.9 (Mavericks) font issue # https://bugreports.qt-project.org/browse/QTBUG-32789 QFont.insertSubstitution(".Lucida Grande UI", "Lucida Grande") diff --git a/debian/usr/share/doc/artisan/changelog b/debian/usr/share/doc/artisan/changelog index c0e8da421..25fc3428c 100644 --- a/debian/usr/share/doc/artisan/changelog +++ b/debian/usr/share/doc/artisan/changelog @@ -1,3 +1,10 @@ +artisan (0.9.4-0) precise; urgency=low + * new upstream release + * changes since 0.9.3: + - adds alarm table sorting + - bug fixes + -- Sat, 6 Jun 2015 19:32:14 +0200 + artisan (0.9.3-3) precise; urgency=low * new upstream release * changes since 0.9.2: diff --git a/setup-install.nsi b/setup-install.nsi index 4d9488aa8..2ab66438f 100755 --- a/setup-install.nsi +++ b/setup-install.nsi @@ -73,7 +73,7 @@ RequestExecutionLevel admin ; HM NIS Edit Wizard helper defines !define py2exeOutputDir 'dist' !define PRODUCT_NAME "Artisan" -!define PRODUCT_VERSION "0.9.3.3" +!define PRODUCT_VERSION "0.9.4.0" !define PRODUCT_PUBLISHER "The Artisan Team" !define PRODUCT_WEB_SITE "http://code.google.com/p/artisan/" !define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\artisan.exe" diff --git a/setup-packages-mac.txt b/setup-packages-mac.txt index cf20050f2..58fcba7e2 100644 --- a/setup-packages-mac.txt +++ b/setup-packages-mac.txt @@ -21,7 +21,7 @@ o py2app 0.9 o pymodbus 1.3.0 o yoctopuce 1.10.16490 o requests 2.3.0 -o bottle 0.12.7 +o bottle 0.13 trunk o gevent 1.0.1 o geventwebsocket 0.9.3 o appnope 0.1 diff --git a/translations/artisan_ar.ts b/translations/artisan_ar.ts index 4fc492909..043462eea 100644 --- a/translations/artisan_ar.ts +++ b/translations/artisan_ar.ts @@ -137,7 +137,7 @@ END إنتهاء التبريد - + Update تحديث @@ -147,92 +147,92 @@ END مساعدة بي آي دي - + OK موافق - + Cancel إلغاء - + Color ألوان - + Plot رسم - + Background خلفية - + Virtual Device جهاز إفتراضي - + Save Image حفظ الصورة - + Help مساعدة - + Info معلومات - + Set ضبط - + Defaults الإفتراضات - + Order ترتيب - + Add إضافة - + Delete إزالة - + in داخل - + out خارج - + Search بحث - + Path مسار @@ -247,57 +247,57 @@ END إعادة من - + Save حفظ - + Load تحميل - + Del مسح - + Align موازاة - + Up فوق - + Down تحت - + Left يسار - + Right يمين - + Reset إعادة تعيين - + Close إغلاق - + Create إنشاء @@ -307,352 +307,352 @@ END بحث منافذ - + Select إختيار - + Grid شبكة - + Title عنوان - + Y Label عنوان ص - + X Label عنوان س - + Drying Phase مرحلة التجفيف - + Maillard Phase مرحلة ميلارد - + Development Phase مرحلة الحمص - + Cooling Phase مرحلة التبريد - + ET حرارة المحيط - + BT حرارة البن - + DeltaET فارق حرارة المحيط - + DeltaBT فارق حرارة البن - + Markers علامات - + Text نص - + Watermarks غلامات مائية - + C Lines خطوط سي - + Grey مظلل - + LED إضاءة خلفية - + B/W أبيض وأسود - + Reset Parents إعادة تعيين الأصل - + Reverse Hierarchy عكس الترتيب - + + + - + - - - + Line Color لون الخط - + < > - + > < - + Save File حفظ الملف - + Save Img حفظ الصورة - + View Mode وضع العرض - + Open إفتح - + Set Color ظبط اللون - + All On تشغيل الكل - + All Off إيقاف الكل - + Read Ra/So values قراءة قيمة آر أي و اس أو - + RampSoak ON تشغيل التدرج - + RampSoak OFF إيقاف التدرج - + PID OFF تشغيل بي آي دي - + PID ON إيقاف بي آي دي - + Write SV كتابة أس في - + SV Buttons ON تشغيل زر اس في - + SV Buttons OFF إيقاف زر اس في - + Read SV قراءة اس في - + Set p تحديد اس - + Set i تحديد آي - + Set d تحديد دي - + Autotune ON تفعيل التوازن التلقائي - + Autotune OFF إيقاف التوازن التلقائي - + Read PID Values قراءة قيم بي آي دي - + Read إقرأ - + Set ET PID to 1 decimal point تحديد خانة صفرية لل إي تي - + Set BT PID to 1 decimal point تحديد خانة صفرية لل بي تي - + Read RS values قراءة قيم الآر أس - + Write SV1 كتابة أس قي 1 - + Write SV2 كتابة أس في 2 - + Write SV3 كتابة اس في 3 - + Write SV4 كتابة اس في 4 - + Write SV5 كتابة اس في 5 - + Write SV6 كتابة اس في 6 - + Write SV7 كتابة اس في 7 - + ON SV buttons تشغيل أزرة اس في - + OFF SV buttons إيقاف أزرة اس في - + Read SV (7-0) قراءة اس في (0-7) - + pid 1 بي آي دي 1 - + pid 2 بي آي دي 2 - + pid 3 بي آي دي 3 - + pid 4 بي آي دي 4 - + pid 5 بي آي دي 5 - + pid 6 بي آي دي 6 - + pid 7 بي آي دي 7 @@ -662,87 +662,87 @@ END قراءة الكل - + Set ET PID to MM:SS time units تحديد البي آي دي لدقائق وثواني - + Write كتابة - + Insert إدخال - + Clear إزالة - + scan بحث - + Write All كتابة الكل - + Write RS values كتابة قيم الآر أس - + Write SV (7-0) كتابة اس في (0-7) - + Read PIDs قراءة قيم بي آي دي - + Write PIDs كتابة قيم بي آي دي - + Apply - + On - + Off - + calc - + unit - + << - + >> @@ -750,122 +750,122 @@ END CheckBox - + Heavy FC صدع اول قوي - + Low FC صدع أول خفيف - + Light Cut قطع فاتح - + Dark Cut قطع غامق - + Drops قطرات - + Oily مدهن - + Uneven غير متساوي - + Tipping شقوق - + Scorching حروق - + Divots حفر - + DeltaET فارق حرارة المحيط - + DeltaBT فارق حرارة البن - + Smooth Spikes قفزات ناعمة - + Drop Spikes إهمال القفزات - + Limits حدود - + Projection إسقاط - + Show عرض - + Beep نغمة - + Delete roast properties on RESET إزالة خصائص الحماصة عند إعادة التعيين - + Serial Log ON/OFF تشغيل/إيقاف التسجيل التسلسلي - + Autosave [a] حفظ تلقائي [أ] - + Lock Max الحد الأعلى للقفل - + Button زر - + Mini Editor محرر صغير @@ -875,82 +875,82 @@ END تحميل و إخراج تلقائي - + CHARGE تحميل - + DRY END إنتهاء التجفيف - + FC START يدء الصدع الأول - + FC END نهاية الصدع الأول - + SC START بدء الصدع الثاني - + SC END نهاية الصدع الثاني - + DROP إخراج - + COOL END إنتهاء التبريد - + Auto Adjusted تعديل تلقائي - + Watermarks غلامات مائية - + Background خلفية - + Text نص - + Events أحداث - + Playback Aid مساعدة الإعادة - + Time الوقت - + Bar شريط @@ -960,117 +960,117 @@ END درجة بالدقيقة - + ETBTa المساحة الحرارية بين المحيط والبن - + Evaluation تقييم - + Characteristics خصائص - + ET حرارة المحيط - + BT حرارة البن - + Load alarms from profile تحميل الإنذارات من المسار - + Auto CHARGE تحميل تلقائي - + Auto DROP إخراج تلقائي - + Mark TP علامة التحوّل - + Phases LCDs شاشة المراحل - + Auto DRY جفاف تلقائي - + Auto FCs صدع اول تلقائي - + Decimal Places خانات عشرية - + Modbus Port - + Smooth2 - + Start PID on CHARGE - + Load Ramp/Soak table from profile - + Control Button - + Ratiometric - + Align FCs - + /min - + Alarm Popups - + Lock @@ -1098,112 +1098,112 @@ END مروحة - + linear خطّي - + newton نيوتن - + metrics متري - + thermal حراري - + cubic مكعب - + nearest تقريب - + g غرام - + Kg كيلوغرام - + ml ميلليلتر - + l لتر - + ET حرارة المحيط - + BT حرارة البن - + upper right اليمين العلوي - + upper left اليسار العلوي - + lower left اليسار السفلي - + lower right اليمين السفلي - + right يمين - + center left يسار الوسط - + center right يمين الوسط - + lower center أسفل الوسط - + upper center أعاى الوسط - + center الوسط @@ -1213,367 +1213,367 @@ END ثلاثين ثانية - + 1 minute دقيقة - + 2 minute دقيقتان - + 3 minute ثلاث دقائق - + 4 minute أربع دقائق - + 5 minute خمس دقائق - + solid صلب - + dashed مخطط - + dashed-dot مخطط منقط - + dotted منقط - + None لا شيئ - + Event #0 حدث #0 - + Event #%1 حدث #%1 - + lb رطل - + liter لتر - + gallon جالون - + quart ربع جالون - + pint نصف لتر - + cup كوب - + cm^3 سنتيمتر مكعب - + Type نوع - + Value قيمة - + Serial Command أمر تسلسلي - + Modbus Command أمر مودبس - + DTA Command أمر دي تي أي - + Call Program إستدعاء برنامج - + OFF إغلاق - + ON شغّل - + Multiple Event أحداث متعددة - + DeltaBT فارق حرارة البن - + DeltaET فارق حرارة المحيط - + SV Commands إوامر اس في - + Ramp Commands إوامر تدرّج - + little-endian إنديات صغير - + grey رمادي - + Dark Grey رمادي عامق - + Slate Grey رمادي داكن - + Light Gray رمادي فاتح - + Black أسود - + White أبيض - + Transparent شفاف - + Flat لا طعم - + Perpendicular عمدي - + Radial شعاعي - + START إبدأ - + CHARGE تحميل - + TP نقطة تحول - + DRY END إنتهاء التجفيف - + FC START يدء الصدع الأول - + FC END نهاية الصدع الأول - + SC START بدء الصدع الثاني - + SC END نهاية الصدع الثاني - + DROP إخراج - + COOL تبريد - + below أسفل - + above أعلى - + Pop Up إبراز - + Event Button زر الحدث - + Slider مزلاج - + classic تقليدي - + xkcd اكس كي سي دي - + Default إفتراضي - + Humor فكاهي - + Comic رسوم متحركة - + DRY جفاف - + FCs بدء الصدع الأول - + FCe نهاية الصدع الأول - + SCs بدء الصدع الثاني - + SCe نهاية الصدع الثاني - + COOL END إنتهاء التجفيف - + IO Command - + Hottop Heater - + Hottop Fan - + Hottop Command @@ -1644,12 +1644,12 @@ END تحرير نص - + profiles ملامح - + other أخرى @@ -1657,17 +1657,17 @@ END Error Message - + Exception: - + Value Error: - + IO Error: @@ -1677,137 +1677,137 @@ END - + Unable to move CHARGE to a value that does not exist - + Modbus Error: - + Serial Exception: - + F80h Error - + CRC16 data corruption ERROR. TX does not match RX. Check wiring - + No RX data received - + DTAcommand(): %1 bytes received but 15 needed - + Unable to open serial port - + HH806Wtemperature(): Unable to initiate device - + HH506RAGetID: %1 bytes received but 5 needed - + HH506RAtemperature(): Unable to get id from HH506RA device - + HH506RAtemperature(): %1 bytes received but 14 needed - + CENTER302temperature(): %1 bytes received but 7 needed - + CENTER303temperature(): %1 bytes received but 8 needed - + CENTER306temperature(): %1 bytes received but 10 needed - + CENTER309temperature(): %1 bytes received but 45 needed - + Arduino could not set channels - + Arduino could not set temperature unit - + Serial Exception: invalid comm port - + Serial Exception: timeout - + Segment values could not be written into PID - + RampSoak could not be changed - + pid.readoneword(): %1 RX bytes received (7 needed) for unit ID=%2 - + Univariate: no profile data available - + Polyfit: no profile data available - + MS6514temperature(): %1 bytes received but 16 needed - + HH806AUtemperature(): %1 bytes received but 16 needed @@ -1817,7 +1817,7 @@ END - + Arduino could not set filters @@ -1878,147 +1878,147 @@ END Form Caption - + Extras إضافات - + Roast Properties خصائص الحمص - + Artisan Platform منصة آرتيزان - + Settings Viewer عارض الخصائص - + Serial Log سجل تسلسلي - + Error Log سجل الأخطاء - + Message History تاريخ الرسائل - + Keyboard Autosave [a] حفظ تلقائي للمفاتيح [أ] - + AutoSave Path مسار الحفظ - + Axes محاور - + Roast Calculator حاسبة الحمص - + Events أحداث - + Roast Phases مراحل الحمص - + Cup Profile ملمح التذوق - + Profile Background خلفية الرسمة - + Statistics إحصائيات - + Designer Config إعداد المصمم - + Manual Temperature Logger مسجل حرارة يدوي - + Serial Ports Configuration إعدادات منفذ تسلسلي - + Device Assignment تحديد الأجهزة - + Colors ألوان - + Wheel Graph Editor محرر رسم العجلة - + Alarms إنذارات - + Fuji PXR PID Control تحكم فوجي بي اكس آر - + Fuji PXG PID Control تحكم فوجي بي اكس جي - + Delta DTA PID Control تحكم دلتا دي تي أي - + Arduino Control - + Volume Calculator - + Tare Setup @@ -2026,257 +2026,257 @@ END GroupBox - + Curves منحنيات - + LCDs شاشات - + HUD نظام الإستقراء هد - + Input Filters تصفية الإدخال - + Interpolate استوفي - + Univariate وحيد المنغير - + Appearance المظهر - + Resolution الدقة - + Sound الصوت - + Times الأوقات - + Time Axis محور الوقت - + Temperature Axis محور الحرارة - + DeltaBT/DeltaET Axis محور فارق حرارة المحيط/البن - + Legend Location موقع الدلبل - + Grid شبكة - + Rate of Change معدّل التغيّر - + Temperature Conversion تحويل الحرارة - + Weight Conversion تحويل الوزن - + Volume Conversion تحويل الحجم - + Event Types نوع الحدث - + Default Buttons الأزارير الإفتراضية - + Management إدارة - + Evaluation تقييم - + Display عرض - + Initial Settings إعدادات إفتراضية - + Input 1 مدخل 1 - + Input 2 مدخل 2 - + Input 3 مدخل 3 - + Input 4 مدخل 4 - + PID بي آي دي - + Arduino TC4 أردبنو تي سي 4 - + External Program برنامج خارجي - + Symbolic Assignments تحديدات رمزية - + Timer LCD شاشة الوقت - + ET LCD شاشة حرارة المحيط - + BT LCD شاشة حرارة البن - + DeltaET LCD شاشة فارق حرارة المحيط - + DeltaBT LCD شاشة فارق حرارة البن - + Extra Devices / PID SV LCD أجهزة إضافية/بي آي دي - + Label Properties خصائص العنوان - + Polyfit معادلة بوليفت - + Look المظهر - + Network - + p-i-d - + Set Value - + Phidget IO - + Phidgets 1045 - + Phidgets 1046 RTD - + WebLCDs - + Phidgets 1048/1051 - + Sampling @@ -2472,12 +2472,12 @@ END درجة بالدقيقة - + ET حرارة المحيط - + BT حرارة البن @@ -2492,42 +2492,42 @@ END فارق حرارة البن - + at عند - + CHARGE تحميل - + DRY END إنتهاء التجفيف - + FC START يدء الصدع الأول - + FC END نهاية الصدع الأول - + SC START بدء الصدع الثاني - + SC END نهاية الصدع الثاني - + DROP إخراج @@ -2562,7 +2562,7 @@ END درجة / دقيقة - + Time الوقت @@ -2597,32 +2597,32 @@ END حدث # %1 - + City مدينة - + City+ مدينة+ - + Full City مدينة كامله - + Full City+ مدينة كامله + - + Light French فرنسي خفيف - + French فرنسي @@ -2632,7 +2632,7 @@ END %1 لوصول هدف حرارة المحيط %2 - + at %1 عند %1 @@ -2642,192 +2642,192 @@ END %1 لوصول هدف حرارة البن %2 - + %1 after FCs %1 بعد يداية الصدع الأول - + %1 after FCe %1 بعد نهاية الصدع الأول - + ET - BT = %1 حرارة المحيط - حرارة البن = %1 - + ET - BT = %1%2 حرارة المحيط- حرارة البن = %1%2 - + ET Target 1 هدف حرارة المحيط 1 - + BT Target 1 هدف حرارة البن 1 - + ET Target 2 هدف حرارة المحيط 2 - + BT Target 2 هدف حرارة البن 2 - + Mode حالة - + ET p-i-d 1 حرارة المحيط بي آي دي 1 - + Smooth Deltas فروقات ناعمة - + Smooth Curves منحنيات ناعمة - + min أدنى - + max أعلى - + Y(x) ص(س) - + COOL تبريد - + Title عنوان - + Date تاريخ - + Beans البن - + Weight الوزن - + in داخل - + out خارج - + % % - + Volume الحجم - + Density الكثافة - + per لكل - + Bean Size مقاس البن - + mm مليمتر - + Whole Color لون البن المحموص - + Ground Color لون البن المطحون - + Moisture Greens حالة التخزين - + % % - + Ambient Conditions حال الطقس - + Roaster الحماصة - + Operator المشغل - + Roasting Notes ملاحظات الحمص - + Cupping Notes ملاحظات التذوق - + Ambient Source مصدر الطقس @@ -2837,492 +2837,492 @@ END الكثافة عند الدخول: %1 غرام\لتر => الكثافة عند الخروج: %2 غرام\لتر - + (%1 g/l) (%1 غرام\لتر) - + Number of errors found %1 عدد الأخطاء %1 - + Max حد أعلى - + Min حد أدنى - + Rotation تدوير - + Initial Max الحد الأعلى الإبتدائي - + Step خطوة - + Style أسلوب - + Width العرض - + Opaqueness عدم الشفافية - + Enter two times along profile ادخل توقيتين على المسار - + Start (00:00) البداية 00:00 - + End (00:00) النهاية 00:00 - + Fahrenheit فهرنهايت - + Celsius سلسيوس - + Time syntax error. Time not valid صيغة الوقت خاطئة. الوقت غير صحيح - + Error: End time smaller than Start time خطأ: الوقت ينتهي قبل البداية - + Best approximation was made from %1 to %2 أفضل تقريب إستخدم %1 إلى %2 - + No profile found لم يوجد أي مسار - + Bars أشرطة - + Color ألوان - + Marker علامات - + Thickness غلاظة - + Opacity عتمة - + Size المقاس - + Max buttons per row الحد الأعلى للأزرار - + Color Pattern نمط اللون - + palette # لوحة # - + Event حدث - + Action فعل - + Command أمر - + Offset عوض - + Factor عامل - + Drying التجفيف - + Maillard مرحلة ميلارد - + Development مرحلة الحمص - + Default الإفتراضات - + Aspect Ratio نسبة العرض للإرتفاع - + ET Color لون حرارة المحيط - + BT Color لون حرارة البن - + DeltaET Color لون فارق حرارة المحيط - + DeltaBT Color لون فارق حرارة البن - + Text Warning نص التحذير - + sec ثانية - + Cooling التبريد - + Curviness إنحنائية - + Events Playback إعادة الحدث - + Comm Port منفذ الإتصال - + Baud Rate معدل الباود - + Byte Size حجم البايت - + Parity تكافؤ - + Stopbits بت التوقف - + Timeout وقت مستقطع - + Settings for non-Modbus devices إعدادات لغير أجهزة المودبس - + Slave خادم - + Register تسجيل - + Float الطفو - + Function وظيفة - + Device الجهاز - + Control ET تحكم حرارة المحيط - + Read BT إقرأ حرارة البن - + Type نوع - + RS485 Unit ID معرّف وحدة آرأس485 - + ET Channel قناة حرارة المحيط - + BT Channel قناة حرارة البن - + AT Channel قناة أي تي - + ET Y(x) حرارة المحيط ص(س) - + BT Y(x) حرارة البن ص(س) - + Ratio معدّل - + Text نص - + Edge حافّة - + Line خط - + Color pattern نمط اللون - + dg درجة - + Enter description أدخل وصف - + Ramp Soak HH:MM<br>(1-4) تدرّج و إشباع ساعة:دقيقة (1-4) - + Ramp Soak HH:MM<br>(5-8) تدرّج و إشباع ساعة:دقيقة (5-8) - + Ramp/Soak Pattern نمط التدرج\الإشباع - + WARNING تحذير - + Writing eeprom memory نكت لذاكرة ايبروم - + <u>Max life</u> 10,000 writes الحد النهائي 10,000 كتابة - + Infinite read life. قراءة ملف لا نهائي. - + After <u>writing</u> an adjustment,<br>never power down the pid<br>for the next 5 seconds <br>or the pid may never recover. بعد كتابة تعديل لا تظفئ البي آي دي لخمس ثواني وإلا قد لا يعاود البي آي دي العمل. - + Read operations manual إقرأ دليل المستخدم - + ET Thermocouple type نوع مستشعر حرارة المحيط - + BT Thermocouple type نوع مستشعر حرارة البن - + NOTE: BT Thermocouple type is not stored in the Artisan settings ملاحظة: نوعية مستشعر حرارة البن لا تخزّن في إعدادات أرتيزان - + Artisan uses 1 decimal point في برنامج أرتزان نستخدم خانه عشريّة واحدة - + Ramp Soak (MM:SS)<br>(1-7) تدرّج و إشباع دقيقة:ثانية (1-4) - + Ramp Soak (MM:SS)<br>(8-16) تدرّج و إشباع دقيقة:ثانية (5-8) - + Pattern نمط - + SV (7-0) اس في (0-7) - + Write كتابة - + P بي - + I آي - + D دي - + Artisan Fuji PXG uses MINUTES:SECONDS units in Ramp/Soaks في برنامج أرتيزان فوجي بي اكس جي يستخدم وحدات دقائق:ثواني في تدرّج الصعود و الإشباع - + SV اس في @@ -3357,22 +3357,22 @@ END %1 درجة\ثانية , %2 درجة\دقيقة - + Start بداية - + End نهاية - + Path Effects مؤثّرات المسار - + Font الخط @@ -3402,12 +3402,12 @@ END يدء التسجيل - + Prefix - + Source مصدر @@ -3417,77 +3417,77 @@ END - + Window - + Cycle - + Lookahead - + Manual - + Ramp/Soak - + Background خلفية - + SV Buttons - + SV Slider - + Coarse - + Host - + Port - + HUD Button - + Raw - + ServerId: - + Password: @@ -3522,12 +3522,12 @@ END - + Moisture Roasted - + Density in: %1 g/l => Density out: %2 g/l @@ -3552,112 +3552,112 @@ END - + <b>%1</b> %2/sec, <b>%3</b> %4/min - + Async - + Change - + Gain - + Rate - + Wiring - + Delta Span - + Unit - + ml ميلليلتر - + Unit Weight - + g غرام - + Kg كيلوغرام - + l لتر - + in داخل - + out خارج - + Moisture loss: %1% Organic loss: %2% - + Filter - + Emissivity - + ON شغّل - + OFF إغلاق - + %1 to reach ET %2 - + %1 to reach BT %2 @@ -3667,17 +3667,17 @@ END - + XT Color - + XT - + current palette @@ -3723,52 +3723,52 @@ END Marker - + Circle دائرة - + Square مربع - + Pentagon مخمس - + Diamond معين الزوايا - + Star نجمة - + Hexagon 1 مسدس 1 - + Hexagon 2 مسدس 2 - + + + - + x x - + None لا شيئ @@ -4380,7 +4380,7 @@ Profile missing [CHARGE] or [DROP] - + Open Wheel Graph @@ -4530,7 +4530,7 @@ Profile missing [CHARGE] or [DROP] - + No profile found لم يوجد أي مسار @@ -4636,720 +4636,720 @@ Continue? ثواني - + Alarm Config - + Alarms are not available for device None - + Switch Language - + Language successfully changed. Restart the application. - + Import K202 CSV - + K202 file loaded successfully - + Import K204 CSV - + K204 file loaded successfully - + Import HH506RA CSV - + HH506RA file loaded successfully - + Save Graph as PNG - + %1 size(%2,%3) saved - + Save Graph as SVG - + %1 saved - + Invalid Wheel graph format - + Wheel Graph succesfully open - + Return the absolute value of x. - + Return the arc cosine (measured in radians) of x. - + Return the arc sine (measured in radians) of x. - + Return the arc tangent (measured in radians) of x. - + Return the cosine of x (measured in radians). - + Convert angle x from radians to degrees. - + Return e raised to the power of x. - + Return the logarithm of x to the given base. - + Return the base 10 logarithm of x. - + Return x**y (x to the power of y). - + Convert angle x from degrees to radians. - + Return the sine of x (measured in radians). - + Return the square root of x. - + Return the tangent of x (measured in radians). - + MATHEMATICAL FUNCTIONS - + SYMBOLIC VARIABLES - + Symbolic Functions - + Save Palettes - + Palettes saved - + Invalid palettes file format - + Palettes loaded - + Load Palettes - + Alarms loaded - + Interpolation failed: no profile available - + Sound turned ON - + Sound turned OFF - + [ET target 1 = %1] [BT target 1 = %2] [ET target 2 = %3] [BT target 2 = %4] - + Event #%1 added - + Event #%1 deleted - + No events found - + Roast properties updated but profile not saved to disk - + Autosave ON. Prefix: %1 - + Autosave OFF - + xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) - + <b>Event</b> hide or show the corresponding slider - + <b>Action</b> Perform an action on slider release - + <b>Command</b> depends on the action type ('{}' is replaced by <i>value</i>*<i>factor</i> + <i>offset</i>) - + Serial Command: ASCII serial command or binary a2b_uu(serial command) - + DTA Command: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating - + <b>Offset</b> added as offset to the slider value - + <b>Factor</b> multiplicator of the slider value - + Event custom buttons - + Event configuration saved - + Found empty event type box - + <b>Button Label</b> Enter \n to create labels with multiple lines. - + <b>Event Description</b> Description of the Event to be recorded. - + <b>Event type</b> Type of event to be recorded. - + <b>Action</b> Perform an action at the time of the event - + <b>Documentation</b> depends on the action type ('{}' is replaced by the event value): - + Call Program: A program/script path (absolute or relative) - + Multiple Event: Adds events of other button numbers separated by a comma: 1,2,3, etc. - + <b>Button Visibility</b> Hides/shows individual button - + <b>Keyboard Shorcut: </b> [b] Hides/shows Extra Button Rows - + Phases changed to %1 default: %2 - + Background profile not found - + Background does not match number of labels - + Playback Aid set ON at %1 secs - + No profile background found - + Reading background profile... - + Not enough time points for an ET curviness of %1. Set curviness to %2 - + Designer Config إعداد المصمم - + Not enough time points for an BT curviness of %1. Set curviness to %2 - + CHARGE تحميل - + DRY END إنتهاء التجفيف - + FC START يدء الصدع الأول - + FC END نهاية الصدع الأول - + SC START بدء الصدع الثاني - + SC END نهاية الصدع الثاني - + DROP إخراج - + Incorrect time format. Please recheck %1 time - + Times need to be in ascending order. Please recheck %1 time - + Designer has been reset - + Tick the Float flag in this case. - + Serial Port Settings: %1, %2, %3, %4, %5, %6 - + External program - + Device not set - + PID to control ET set to %1 %2 ; PID to read BT set to %3 %4 - + Device set to %1. Now, check Serial Port settings - + Device set to %1. Now, chose serial port - + Device set to CENTER 305, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 309. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 303. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH506RA. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH806AU. Now, chose serial port - + Device set to %1 - + Device set to %1%2 - + Device set to %1, which is equivalent to CENTER 302. Now, chose serial port - + Color of %1 set to %2 - + Save Wheel graph - + Wheel Graph saved - + Load Alarms - + Save Alarms - + <b>Status:</b> activate or deactive alarm - + <b>If Alarm:</b> alarm triggered only if the alarm with the given number was triggered before. Use 0 for no guard. - + <b>From:</b> alarm only triggered after the given event - + <b>Time:</b> if not 00:00, alarm is triggered mm:ss after the event 'From' happend - + <b>Source:</b> the temperature source that is observed - + <b>Condition:</b> alarm is triggered if source rises above or below the specified temperature - + <b>Temp:</b> the speficied temperature limit - + <b>Action:</b> if all conditions are fulfilled the alarm triggeres the corresponding action - + <b>NOTE:</b> each alarm is only triggered once - + OFF إغلاق - + CONTINUOUS CONTROL - + ON شغّل - + STANDBY MODE - + The rampsoak-mode tells how to start and end the ramp/soak - + Your rampsoak mode in this pid is: - + Mode = %1 - + Start to run from PV value: %1 - + End output status at the end of ramp/soak: %1 - + Output status while ramp/soak operation set to OFF: %1 - + Repeat Operation at the end: %1 - + Recomended Mode = 0 - + If you need to change it, change it now and come back later - + Use the Parameter Loader Software by Fuji if you need to - + Continue? - + Current sv = %1. Change now to sv = %2? - + Change svN - + Current pid = %1. Change now to pid =%2? - + Ramp Soak start-end mode - + Pattern changed to %1 - + Pattern did not changed - + Ramp/Soak was found ON! Turn it off before changing the pattern - + Ramp/Soak was found in Hold! Turn it off before changing the pattern - + Activate PID front buttons - + Remember SV memory has a finite life of ~10,000 writes. @@ -5357,52 +5357,52 @@ Proceed? - + RS ON - + RS OFF - + RS on HOLD - + PXG sv#%1 set to %2 - + PXR sv set to %1 - + SV%1 changed from %2 to %3) - + Unable to set sv%1 - + SV changed from %1 to %2 - + Unable to set sv - + Unable to set new sv @@ -5412,7 +5412,7 @@ Proceed? - + Save Graph as PDF @@ -5422,22 +5422,22 @@ Proceed? - + Phidget Temperature Sensor 4-input attached - + Phidget Bridge 4-input attached - + Device set to %1. Now, chose Modbus serial port - + <b>But Not:</b> alarm triggered only if the alarm with the given number was not triggered before. Use 0 for no guard. @@ -5453,17 +5453,17 @@ Continue? - + <b>Description:</b> the text of the popup, the name of the program, the number of the event button or the new value of the slider - + Load PID Settings - + Save PID Settings @@ -5483,12 +5483,12 @@ Continue? - + current background ET - + current background BT @@ -5503,27 +5503,27 @@ Continue? - + Phidget 1018 IO attached - + Load Ramp/Soak Table - + Save Ramp/Soak Table - + PID turned on - + PID turned off @@ -5533,72 +5533,72 @@ Continue? - + Return the minimum of x and y. - + Return the maximum of x and y. - + The MODBUS device corresponds to input channels - + 1 and 2.. The MODBUS_34 extra device adds - + input channels 3 and 4. Inputs with slave - + id set to 0 are turned off. Modbus function 3 - + 'read holding register' is the standard. - + Modbus function 4 triggers the use of 'read - + 2 byte integer registers. A temperature of 145.2C - + is often sent as 1452. In that case you have to - + use the symbolic assignment 'x/10'. Few devices - + hold data as 4 byte floats in two registers. - + Yocto Thermocouple attached - + Yocto PT100 attached @@ -5608,92 +5608,92 @@ Continue? - + Phidget Temperature Sensor IR attached - + input register'. Input registers (fct 4) usually - + are from 30000-39999. Most devices hold data in - + IO Command: set(n,0), set(n,1), toggle(n) to set Phidget IO digital output n - + ET value - + BT value - + Extra #1 T1 value - + Extra #1 T2 value - + Extra #2 T1 value - + Extra #2 T2 value - + Yn holds values sampled in the actual interval if refering to ET/BT or extra channels from devices listed before, otherwise Yn hold values sampled in the previous interval - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) writes values to the registers in slaves specified by the given ids - + <b>Event value</b> Value of event (1-100) to be recorded - + Phidget Temperature Sensor IR detached - + Phidget Temperature Sensor 4-input detached - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) or wcoils(slaveId,register,&lt;bool&gt;) writes values to the registers in slaves specified by the given ids - + Phidget Bridge 4-input detached - + Phidget 1018 IO detached @@ -5702,21 +5702,16 @@ Continue? Hottop control turned off - - - Hottop control turned on - - Radio Button - + Meter جهاز قياس - + PID بي آي دي @@ -5726,12 +5721,12 @@ Continue? أردبنو تي سي 4 - + Program برنامج - + TC4 @@ -5830,337 +5825,337 @@ Continue? StatusBar - + Playback Aid set OFF - + Ready - + Decimal position successfully set to 1 - + Problem setting decimal position - + Problem setting thermocouple type - + setting autotune... - + Autotune successfully turned OFF - + Autotune successfully turned ON - + wait... - + PID OFF تشغيل بي آي دي - + PID ON إيقاف بي آي دي - + SV successfully set to %1 - + Empty SV box - + Unable to read SV - + Ramp/Soak operation cancelled - + No RX data - + RS ON - + Need to change pattern mode... - + Pattern has been changed. Wait 5 secs. - + Pattern could not be changed - + RampSoak could not be changed - + RS OFF - + RS successfully turned OFF - + setONOFFrampsoak(): Ramp Soak could not be set OFF - + getsegment(): problem reading ramp - + getsegment(): problem reading soak - + Finished reading Ramp/Soak val. - + setpid(): There was a problem setting %1 - + Ramp/Soak successfully written - + Time Units successfully set to MM:SS - + Problem setting time units - + Thermocouple type successfully set - + SV%1 set to %2 - + Problem setting SV - + Cancelled svN change - + PID already using sv%1 - + setNsv(): bad response - + setNpid(): bad confirmation - + Cancelled pid change - + PID was already using pid %1 - + setNpid(): Unable to set pid %1 - + SV%1 successfully set to %2 - + setsv(): Unable to set SV - + pid #%1 successfully set to (%2,%3,%4) - + pid command failed. Bad data at pid%1 (8,8,8): (%2,%3,%4) - + getallpid(): Unable to read pid values - + PID is using pid = %1 - + getallpid(): Unable to read current sv - + PID is using SV = %1 - + Ramp Soak could not be set OFF - + PID set to OFF - + PID set to ON - + Unable - + No data received - + Reading Ramp/Soak %1 ... - + problem reading Ramp/Soak - + Current pid = %1. Proceed with autotune command? - + Autotune cancelled - + UNABLE to set Autotune - + SV اس في - + Ramp (MM:SS) - + Soak (MM:SS) - + Work in Progress - + sending commands for p%1 i%2 d%3 - + %1 successfully sent to pid - + pid changed to %1 - + Finished reading pid values @@ -6168,157 +6163,157 @@ Continue? Tab - + HUD إستقراء هد - + Plotter الرسّام - + Math الحساب - + UI الواجهة - + General عام - + Notes ملاحظات - + Events أحداث - + Data معلومات - + Config إعداد - + Buttons أزرّة - + Sliders زلاجات - + Palettes طاقم ألوان - + Style أسلوب - + ET/BT حرارة المحيط/البن - + Extra إضافي - + Modbus نظام مودبس - + Scale ميزان - + Extra Devices أجهزة إضافية - + Symb ET/BT رمز حرارة المحيط/البن - + Graph الرسم البياني - + LCDs شاشات - + RS آر أس - + SV اس في - + PID بي آي دي - + Set RS تحديد آر أس - + Color لون - + Quantifiers - + Ramp/Soak - + Phidgets - + Filter - + Espresso @@ -6336,12 +6331,12 @@ Continue? الوقت النسبي - + ET حرارة المحيط - + BT حرارة البن @@ -6396,242 +6391,242 @@ Continue? %1 جدث #%2 %3%4 - + Time الوقت - + Description الوصف - + Type نوع - + Value قيمة - + Label عنوان - + Action فعل - + Documentation توثيق - + Visibility الظهور - + Color ألوان - + Text Color لون النص - + Device الجهاز - + Comm Port منفذ الإتصال - + Baud Rate معدل الباود - + Byte Size حجم البايت - + Parity تكافؤ - + Stopbits بت التوقف - + Timeout وقت مستقطع - + Color 1 اللون 1 - + Color 2 اللون 2 - + Label 1 عنوان 1 - + Label 2 عنوان 2 - + y1(x) ص1(س) - + y2(x) ص2(س) - + LCD 1 شاشة 1 - + LCD 2 شاشة 2 - + Curve 1 منحنى 1 - + Curve 2 منحنى 2 - + Parent أصل - + Width العرض - + Opaqueness عدم الشفافية - + Delete Wheel حذف العجلة - + Edit Labels تحرير العنوان - + Update Labels تحدبث العنوان - + Properties خصائص - + Radius نصف القطر - + Starting angle زاوية البداية - + Projection إسقاط - + Text Size حجم النص - + Color Pattern نمط اللون - + Status حالة - + If Alarm إذا التنبية - + From من - + Source مصدر - + Condition وضع - + Temp درجة الحرارة - + SV اس في - + Ramp HH:MM تدرّج ساعة:دقيقة - + Soak HH:MM إشباع ساعة:دقيقة @@ -6641,85 +6636,90 @@ Continue? إبدأ - + DRY END إنتهاء التجفيف - + FC START يدء الصدع الأول - + FC END نهاية الصدع الأول - + SC START بدء الصدع الثاني - + SC END نهاية الصدع الثاني - + COOL تبريد - + EVENT #%2 %3%4 جدث #%2 %3%4 - + DROP إخراج - + CHARGE تحميل - + But Not ولكن ليس - + DeltaET فارق حرارة المحيط - + DeltaBT فارق حرارة البن - + EVENT #%1 %2%3 - + Beep نغمة - + Name - + Weight الوزن + + + Nr + + Textbox @@ -7092,42 +7092,42 @@ Pungency تحديث الحدث - + <b>Label</b>= <b>عنوان</b>= - + <b>Description </b>= <b>وصف </b>= - + <b>Type </b>= <b>نوع </b>= - + <b>Value </b>= <b>قيمة </b>= - + <b>Documentation </b>= <b>نوثيق </b>= - + <b>Button# </b>= <b>زر# </b>= - + Save image using current graph size to a png format حفظ صورة بحجم الرسم الحالي يصيغة ال PNG - + linear: linear interpolation cubic: 3rd order spline interpolation nearest: y value of the nearest point @@ -7136,162 +7136,162 @@ nearest: y value of the nearest point تقريب: قيمة ص لأقرب نقطة - + ON/OFF logs serial communication تشغيل/إيقاف التسجيل التسلسلي - + Automatic generated name = This text + date + time الإسم المولّد تلقائيا = هذا-النص + تاريخ + وقت - + ON/OFF of automatic saving when pressing keyboard letter [a] تشغيل/إيقاف الحفظ التلقائي - + Sets the directory to store batch profiles when using the letter [a] تحديد المجلد لحفظ حزم المسارات المستخدمة للحرف [أ] - + Allows to enter a description of the last event يسمح بإضافة وصف لآخر حدث - + Add new extra Event button إضافة زر حدث جديد - + Delete the last extra Event button إزالة آخر زر إضافي للحدث - + Show help إظهار المساعدة - + Backup all palettes to a text file حفظ كل اللوحات إلى ملف نصّي - + Action Type نوع فعل - + Action String جملة فعل - + Aspect Ratio نسبة العرض للإرتفاع - + Example: 100 + 2*x مثال: 100 + 2*س - + Example: 100 + x مثال: 100 + س - + Erases wheel parent hierarchy إزالة أصل العجلة - + Sets graph hierarchy child->parent instead of parent->child تعيين تسلسل الرسم فرع>أصل بدلا من أصل>فرع - + Increase size of text in all the graph كبّر مقاس النص في كل الرسمة - + Decrease size of text in all the graph صغّر مقاس النص في كل الرسمة - + Decorative edge beween wheels قاصل التجميل بين العجلات - + Line thickness غلاظة الخط - + Line color لون الخط - + Apply color pattern to whole graph تطبيق نمط اللون للعجلة بالكامل - + Add new wheel إضافة عجلة جديدة - + Rotate graph 1 degree counter clockwise تدوير الرسم درجة عكس عقارب الساعة - + Rotate graph 1 degree clockwise تدوير الرسم درجة مع عقارب الساعة - + Save graph to a text file.wg حفظ الرسم إلى ملف نصّي .wg - + Sets Wheel graph to view mode تحدبد العجلة لوضع المشاهدة - + open graph file.wg إقتح ملف الرسم (.wg) - + Close wheel graph editor أغلق محرر رسم العجلة - + Restore all palettes from a text file إستعادة كل اللوحات من ملف نصّي - + Clear alarms table إزالة جدول الإنذارات - + Interval diff --git a/translations/artisan_de.qm b/translations/artisan_de.qm index e0f1ac79b..e8dd0020f 100644 Binary files a/translations/artisan_de.qm and b/translations/artisan_de.qm differ diff --git a/translations/artisan_de.ts b/translations/artisan_de.ts index 4cf9f1def..41992db81 100644 --- a/translations/artisan_de.ts +++ b/translations/artisan_de.ts @@ -21,462 +21,462 @@ Button - + Update Aktualisieren - + Cancel Abbrechen - + Add Hinzufügen - + Delete Entfernen - + Path Pfad - + Defaults Standardwerte - + Save Img Bild Speichern - + Load Laden - + Align Justieren - + Plot Darstellen - + Help Hilfe - + Close Beenden - + Create Erstellen - + Background Profilvorlage - + Grid Gitterlininen - + Title Name - + Y Label Y Achse - + X Label X Achse - + DeltaET DeltaET - + DeltaBT DeltaBT - + Markers Markierungen - + Watermarks Wasserzeichen - + C Lines C Linien - + Grey Graustufen - + B/W S/W - + Reverse Hierarchy Hierarchie Umkehren - + Line Color Linienfarbe - + Save File Speichern - + Open Öffnen - + PID OFF PID AUS - + PID ON PID EIN - + ON SV buttons SV Tasten Anzeigen - + OFF SV buttons SV Tasten Verstecken - + All On Alle AN - + All Off Alle AUS - + Save Image Speichern - + Up Oben - + Down Unten - + Left Links - + Right Rechts - + OK OK - + Virtual Device Virtuelles Gerät - + Info Info - + Set Aktivieren - + Order Anordnen - + in Ein - + out Aus - + Search Suchen - + Del Löschen - + Reset Zurücksetzen - + Select Auswählen - + ET ET - + BT BT - + Text Text - + LED LED - + Reset Parents Zurücksetzen - + + + - + - - - + < < - + > > - + View Mode Anzeigemodus - + Set Color Farbe Aktivieren - + Read Ra/So values Ra/So Werte Lesen - + RampSoak ON Rampe/Haltezeit AN - + RampSoak OFF Rampe/Haltezeit AUS - + Write SV SV Schreiben - + Set p Wert p - + Set i Wert i - + Set d Wert d - + Autotune ON Autotune EIN - + Autotune OFF Autotune AUS - + Read Lesen - + Set ET PID to 1 decimal point ET PID auf eine Dezimalstelle stellen - + Set BT PID to 1 decimal point BT PID auf eine Dezimalstelle stellen - + Read RS values RS Werte Lesen - + Write SV1 SV1 Schreiben - + Write SV2 SV2 Schreiben - + Write SV3 SV3 Schreiben - + Write SV4 SV4 Schreiben - + Write SV5 SV5 Schreiben - + Write SV6 SV6 Schreiben - + Write SV7 SV7 Schreiben - + Read SV (7-0) SV (7-0) Lesen - + pid 1 - + pid 2 - + pid 3 - + pid 4 - + pid 5 - + pid 6 - + pid 7 - + Set ET PID to MM:SS time units ET PID auf MM:SS Zeiteinheit setzen - + Save Speichern @@ -602,127 +602,127 @@ END Wiederherstellen von - + SV Buttons ON SV Tasten An - + SV Buttons OFF SV Tasten Aus - + Read SV SV Lesen - + Read PID Values PID Werte Lesen - + Write Schreiben - + Drying Phase Trocknungsphase - + Maillard Phase Maillardphase - + Development Phase Entwicklungsphase - + Cooling Phase Abkühlphase - + Color Farbe - + Insert Einfügen - + Clear Zurücksetzten - + scan messen - + Write All Alle Schreiben - + Write RS values RS Werte Schreiben - + Write SV (7-0) SV Werte Schreiben - + Read PIDs PIDs Lesen - + Write PIDs PIDs Schreiben - + Apply Anwenden - + On An - + Off Aus - + calc kalk - + unit Maß - + << - + >> @@ -730,127 +730,127 @@ END CheckBox - + DeltaET DeltaET - + DeltaBT DeltaBT - + Projection Projektion - + Beep Piepston - + Auto Adjusted Automatische Anpassung - + Show Anzeigen - + Events Ereignisse - + Time Zeit - + Characteristics Kenndaten - + DRY END TROCKEN - + FC END FC ENDE - + SC END SC ENDE - + Button Taste - + Background Profilvorlage - + Serial Log ON/OFF Serielles Protokoll EIN/AUS - + Delete roast properties on RESET Lösche Rösteinstellungen bei RESET - + Autosave [a] Automatisches Speichern [a] - + Mini Editor Mini Editor - + CHARGE FÜLLEN - + FC START - + SC START - + DROP LEEREN - + COOL END ABGEKÜHLT - + Text Text - + Bar Balken @@ -860,192 +860,192 @@ END d/m - + ETBTa ETBTa - + Evaluation Bewertung - + ET ET - + BT BT - + Playback Aid Wiedergabehilfe - + Heavy FC Lauter FC - + Low FC Leiser FC - + Light Cut Heller Schnitt - + Dark Cut Dunkler Schnitt - + Drops Öltröpfchen - + Oily Ölig - + Uneven Ungleichmäßig - + Tipping Versengte Spitzen - + Scorching Versengungen - + Divots Abplatzer - + Drop Spikes Spitzen Entfernen - + Smooth Spikes Spitzen Glätten - + Limits Limits - + Watermarks Wasserzeichen - + Lock Max Max Sperre - + Load alarms from profile Alarme von Profilen laden - + Mark TP TP Markieren - + Phases LCDs Phasen LCDs - + Auto DRY Auto TROCKEN - + Auto FCs - + Auto CHARGE Auto FÜLLEN - + Auto DROP Auto LEEREN - + Decimal Places Nachkommastellen - + Modbus Port Modbus Kanal - + Smooth2 Glätten2 - + Start PID on CHARGE PID bei FÜLLEN starten - + Load Ramp/Soak table from profile Ramp/Soak Tabelle von Profilen laden - + Control Button Taste Steuerung - + Ratiometric - + Align FCs FC ausrichten - + /min - + Alarm Popups - + Lock Fest @@ -1053,7 +1053,7 @@ END ComboBox - + None Keines @@ -1073,122 +1073,122 @@ END Lüfter - + upper right oben rechts - + upper left oben links - + lower left unten links - + lower right unten rechts - + right rechts - + center left mitte links - + center right mitte rechts - + lower center unten mitte - + upper center oben mitte - + center mitte - + grey grau - + Dark Grey Dunkelgrau - + Slate Grey Schiefergrau - + Light Gray Hellgrau - + Black Schwarz - + White Weiß - + Transparent Transparenz - + Flat Eben - + CHARGE FÜLLEN - + DRY END TROCKEN - + FC END FC ENDE - + DROP LEEREN - + OFF AUS - + ON EIN @@ -1198,272 +1198,272 @@ END 30 Sekunden - + 1 minute 1 Minute - + 2 minute 2 Minuten - + 3 minute 3 Minuten - + 4 minute 4 Minuten - + 5 minute 5 Minuten - + solid durchgezogen - + dashed gestrichelt - + dashed-dot strichpunktiert - + dotted punktiert - + linear linear - + newton newton - + metrics metrisch - + thermal thermal - + cubic kubisch - + nearest nächstliegend - + g g - + Kg Kg - + ml ml - + l l - + Event #0 Ereignis #0 - + Event #%1 Ereignis #%1 - + lb lb - + liter liter - + gallon gallon - + quart quart - + pint pint - + cup cup - + cm^3 cm^3 - + Type Typ - + Value Wert - + Serial Command Serieller Befehl - + Modbus Command Modbus Befehl - + DTA Command DTA Befehl - + Call Program Externes Programm - + Multiple Event Ereignissequenz - + Perpendicular Lotrecht - + Radial Radial - + DeltaET DeltaET - + DeltaBT DeltaBT - + ET - + BT - + START - + TP - + FC START - + SC START - + SC END SC ENDE - + COOL KÜHL - + Event Button Ereignis Taste - + Slider Regler - + below unter - + above über - + Pop Up Dialogfenster - + SV Commands SV Befehle - + Ramp Commands Ramp Befehle @@ -1473,82 +1473,82 @@ END Drehzahl - + little-endian - + classic klassisch - + xkcd - + Default Standardwerte - + Humor - + Comic - + DRY TROCKEN - + FCs - + FCe - + SCs - + SCe - + COOL END ABGEKÜHLT - + IO Command IO Befehl - + Hottop Heater Hotto Heizung - + Hottop Fan Hottop Lüfter - + Hottop Command Hottop Befehl @@ -1614,12 +1614,12 @@ END Directory - + profiles Profile - + other Sonstiges @@ -1627,42 +1627,42 @@ END Error Message - + Unable to move CHARGE to a value that does not exist Versetzen von CHARGE auf einen Wert der nicht existiert fehlgeschlagen - + HH806Wtemperature(): Unable to initiate device HH806Wtemperature(): Gerät konnte nicht initalisiert werden - + HH506RAGetID: %1 bytes received but 5 needed HH506RAGetID: %1 bytes empfangen aber 5 benötigt - + HH506RAtemperature(): Unable to get id from HH506RA device HH506RAtemperature(): Die ID konnte nicht von dem HH506RA Gerät gelesen werden - + HH506RAtemperature(): %1 bytes received but 14 needed HH506RAtemperature(): %1 bytes empfangen aber 14 benötigt - + Segment values could not be written into PID Abschnittswerte konnten nicht in den PID geschrieben werden - + RampSoak could not be changed Rampe/Haltezeit konnte nicht geändert werden - + pid.readoneword(): %1 RX bytes received (7 needed) for unit ID=%2 pid.readoneword(): %1 RX bytes empfangen (7 benötigt) für Gerät mit ID=%2 @@ -1672,112 +1672,112 @@ END Fehler - + Value Error: Falscher Wert: - + Exception: Fehler: - + IO Error: Ein-/Ausgabe Fehler: - + Modbus Error: Modbus Fehler: - + Serial Exception: Serieller Kommunikationsfehler: - + F80h Error F80h Fehler - + CRC16 data corruption ERROR. TX does not match RX. Check wiring Prüfsummenfehler. Verkabelung kontrollieren - + No RX data received Keine Daten empfangen - + Unable to open serial port Seriellerkanal konnte nicht geöffnet werden - + CENTER303temperature(): %1 bytes received but 8 needed CENTER303temperature(): %1 bytes empfangen aber 8 benötigt - + CENTER306temperature(): %1 bytes received but 10 needed CENTER306temperature(): %1 bytes empfangen aber 10 benötigt - + DTAcommand(): %1 bytes received but 15 needed DTAcommand(): %1 bytes empfangen aber 15 benötigt - + CENTER309temperature(): %1 bytes received but 45 needed CENTER309temperature(): %1 bytes empfangen aber 45 benötigt - + Arduino could not set channels Arduino Kanalkonfiguration fehlgeschlagen - + Arduino could not set temperature unit Arduino Konfiguration der Temperatureinheiten fehlgeschlagen - + CENTER302temperature(): %1 bytes received but 7 needed CENTER302temperature(): %1 bytes empfangen aber 7 benötigt - + Serial Exception: invalid comm port Serieller Kommunikationsfehler: ungültiger Anschluss - + Serial Exception: timeout Serieller Kommunikationsfehler: timeout - + Univariate: no profile data available Univariate: kein Profil verfügbar - + Polyfit: no profile data available Polyfit: kein Profil verfügbar - + MS6514temperature(): %1 bytes received but 16 needed MS6514temperature(): %1 bytes empfangen aber 16 benötigt - + HH806AUtemperature(): %1 bytes received but 16 needed HH806AUtemperature(): %1 bytes empfangen aber 16 benötigt @@ -1787,7 +1787,7 @@ END Fehler: - + Arduino could not set filters Arduino Filter konnte nicht gesetzt werden @@ -1848,147 +1848,147 @@ END Form Caption - + Extras Erweiterungen - + Roast Properties Eigenschaften der Röstung - + Error Log Fehlerprotokoll - + Message History System Meldungen - + AutoSave Path Automastisches Speicher Pfad - + Roast Calculator Röstrechner - + Events Ereignisse - + Roast Phases Röstphasen - + Cup Profile Verkostung - + Profile Background Profilvorlage - + Statistics Statistiken - + Designer Config Einstellungen Designer - + Manual Temperature Logger Manueller Temperatur Logger - + Serial Ports Configuration Einstellungen Serielle Anschlüsse - + Device Assignment Gerätezuordnung - + Colors Farben - + Wheel Graph Editor Kreisdiagramm Editor - + Alarms Alarme - + Fuji PXG PID Control Fuji PXG PID Steuerung - + Axes Achsen - + Delta DTA PID Control Delta DTA PID Steuerung - + Serial Log Datenübertragungs Protokoll - + Artisan Platform Artisan Plattform - + Keyboard Autosave [a] Automatisches Speichern [a] - + Settings Viewer Einstellungen - + Fuji PXR PID Control Fuji PXR PID Steuerung - + Arduino Control Arduino Steuerung - + Volume Calculator Volumen Rechner - + Tare Setup Tare Einstellung @@ -1996,212 +1996,212 @@ END GroupBox - + Curves Kurven - + Interpolate Interpolation - + Univariate Eindimensional - + Times Zeiten - + Legend Location Position der Legende - + DeltaET LCD DeltaET LCD - + DeltaBT LCD DeltaBT LCD - + Time Axis Zeitachse - + Temperature Axis Temperaturachse - + Grid Raster - + LCDs LCDs - + HUD HUD - + Appearance Oberfläche - + Resolution Auflösung - + DeltaBT/DeltaET Axis DeltaBT/DeltaET Achse - + Rate of Change Änderungsrate - + Temperature Conversion Temperaturumrechnung - + Weight Conversion Gewichtsumrechnung - + Volume Conversion Volumenumrechnung - + Event Types Ereignistypen - + Default Buttons Standard Tasten - + Management Verwaltung - + Evaluation Bewertung - + Display Anzeige - + Initial Settings Standard Einstellungen - + Input 1 Eingang 1 - + Input 2 Eingang 2 - + Input 3 Eingang 3 - + Input 4 Eingang 4 - + PID PID - + Arduino TC4 Arduino TC4 - + External Program Externes Programm - + Symbolic Assignments Symbolische Verknüpfung - + Timer LCD Timer LCD - + ET LCD ET LCD - + BT LCD BT LCD - + Label Properties Markierungseigenschaften - + Sound Ton - + Input Filters Eingangsfilter - + Extra Devices / PID SV LCD Zusatzgeräte / PID SV - + Polyfit - + Look Aussehen @@ -2211,37 +2211,37 @@ END 1048 Fühlertypen - + Network Netzwerk - + p-i-d - + Set Value Zielwert - + Phidget IO - + Phidgets 1045 - + Phidgets 1046 RTD - + WebLCDs @@ -2251,12 +2251,12 @@ END Abtastintervall - + Phidgets 1048/1051 - + Sampling @@ -2462,187 +2462,187 @@ END Ereignis #<b>0 </b> - + CHARGE FÜLLEN - + DRY END TROCKEN - + FC START FC START - + FC END FC ENDE - + SC START SC START - + SC END SC ENDE - + DROP LEEREN - + Title Titel - + Date Datum - + Beans Bohnen - + Weight Gewicht - + in rein - + out raus - + Volume Volumen - + Density Dichte - + per pro - + at bei - + Roaster Röstmaschine - + Operator Röstmeister - + Roasting Notes Notizen zur Röstung - + Cupping Notes Notizen zur Verkostung - + Opaqueness Transparenz - + BT Color BT Farbe - + Comm Port Anschluss - + Baud Rate Baudrate - + Byte Size Datenbits - + Parity Parität - + Stopbits Stoppbits - + Timeout Zeitlimit - + Type Typ - + Edge Kante - + Width Linienstärke - + ET Channel ET Kanal - + BT Channel BT Kanal - + ET Color ET Farbe - + ET - + BT @@ -2662,482 +2662,482 @@ END Ereignis #<b>%1 </b> - + City - + City+ - + Full City - + Full City+ - + Light French - + French - + Mode Modus - + Y(x) - + COOL KÜHL - + % - + Bean Size Bohnengröße - + mm - + % - + (%1 g/l) - + Number of errors found %1 Fehleranzahl %1 - + Max - + Min - + Rotation Rotation - + Step Schrittweite - + Style Stil - + Enter two times along profile Zwei Zeitpunkte des Profils eingeben - + Start (00:00) Start (00:00) - + End (00:00) Ende (00:00) - + Fahrenheit Fahrenheit - + Celsius Celsius - + Time syntax error. Time not valid Zeitrepresentation Fehler. Zeitangabe is ungültig - + Error: End time smaller than Start time Fehler: Endzeitpunkt vor Startzeitpunkt - + Best approximation was made from %1 to %2 Die Beste Näherung wurde berechnet von %1 nach %2 - + No profile found Kein Profil gefunden - + Max buttons per row Anz. Schalter/Zeile - + Color Pattern Farbmuster - + palette # Palette # - + Event Ereignis - + Action Aktion - + Command Befehl - + Offset Offset - + Factor Faktor - + Default Standardwerte - + Aspect Ratio Verhältnis - + Marker Marker - + Time Zeit - + Curviness Rundheit - + Events Playback Ereigniswiedergabe - + Slave Slave - + Register Register - + Device Gerät - + Control ET Steuere ET - + Read BT Lese BT - + RS485 Unit ID RS485 Gerätenummer - + AT Channel AT Kannal - + ET Y(x) - + BT Y(x) - + Ratio Verhältnis - + Text Text - + Line Linie - + Color pattern Farbmuster - + Ramp Soak HH:MM<br>(1-4) Rampe Haltezeit HH:MM<br>(1-4) - + Ramp Soak HH:MM<br>(5-8) Rampe Haltezeit HH:MM<br>(5-8) - + Ramp/Soak Pattern Rampe/Haltezeit Muster - + WARNING WARUNUNG - + Writing eeprom memory EEPROM Speicher wird geschrieben - + <u>Max life</u> 10,000 writes <u>Max Schreibzyklen</u> 10,000 - + Infinite read life. Beliebige Anzahl von Lesezyklen. - + After <u>writing</u> an adjustment,<br>never power down the pid<br>for the next 5 seconds <br>or the pid may never recover. Nachdem <u>schreiben</u> von Werten,<br> den PID die nächsten 5sec<br>nicht ausschalten<br>damit er keinen bleibenden Schaden nimmt. - + Read operations manual Benutzerhandbuch lesen - + ET Thermocouple type ET Messfühler Typ - + BT Thermocouple type BT Messfühler Typ - + Artisan uses 1 decimal point Artisan nutzt eine Nachkommastelle - + Ramp Soak (MM:SS)<br>(1-7) Rampe Haltezeit (MM:SS)<br>(1-7) - + Ramp Soak (MM:SS)<br>(8-16) Rampe Haltezeit (MM:SS)<br>(8-16) - + Pattern Muster - + SV (7-0) - + Write Schreiben - + P - + I - + D - + Artisan Fuji PXG uses MINUTES:SECONDS units in Ramp/Soaks Artisan Fuji PXG nutzt MINUTEN:SEKUNDEN als Einheit für Rampe/Haltezeit - + DeltaET Color DeltaET Farbe - + DeltaBT Color DeltaBT Farbe - + Text Warning Textwarnung - + sec sec - + Moisture Greens Lagerfeuchtigkeit - + Ambient Conditions Umgebungsfeuchtigkeit - + Ambient Source Quelle Umgebungstemperatur - + Color Farbe - + Thickness Linenstärke - + Opacity Transparenz - + Size Größe - + SV SV - + Bars Balken - + Smooth Curves Kurven glätten - + Whole Color Bohnenfarbe - + Ground Color Mahlgutfarbe - + Float Gleitkomma - + Function Funktion - + Smooth Deltas Deltas glätten @@ -3182,7 +3182,7 @@ END %1 bis zum ET Ziel %2 - + at %1 bei %1 @@ -3192,92 +3192,92 @@ END %1 bis zum BT Ziel %2 - + ET - BT = %1 - + ET - BT = %1%2 - + dg - + Enter description Beschreibung eingeben - + NOTE: BT Thermocouple type is not stored in the Artisan settings HINWEIS: BT Messfühler Typ wird nicht in den Programmeinstellungen gespeichert - + %1 after FCs %1 nach FCs - + %1 after FCe %1 nach FCe - + ET Target 1 ET Ziel 1 - + BT Target 1 BT Ziel 1 - + ET Target 2 ET Ziel 2 - + BT Target 2 BT Ziel 2 - + ET p-i-d 1 ET p-i-d 1 - + min min - + max max - + Drying Trocknung - + Maillard Maillard - + Development Entwicklung - + Cooling Kühlung @@ -3287,12 +3287,12 @@ END EREIGNIS - + Initial Max Initiales Max - + Settings for non-Modbus devices Einstellungen für nicht-Modbus Geräte @@ -3317,22 +3317,22 @@ END ETBTa - + Start - + End Ende - + Path Effects Kurveneffekte - + Font Schrift @@ -3362,12 +3362,12 @@ END Aufzeichnung starten - + Prefix Präfix - + Source Quelle @@ -3377,67 +3377,67 @@ END - + Window Fenster - + Cycle Interval - + Lookahead - + Manual Manuell - + Ramp/Soak - + Background Profilvorlage - + SV Buttons SV Tasten - + SV Slider SV Regler - + Coarse Grob - + Host - + Port - + HUD Button Taste HUD - + Raw Rohdaten @@ -3452,12 +3452,12 @@ END Änderungen - + ServerId: - + Password: @@ -3497,12 +3497,12 @@ END raum - + Moisture Roasted Feuchtigkeit Röstkaffee - + Density in: %1 g/l => Density out: %2 g/l Dichte rein: %1 g/l => Dichte raus: %2 g/l @@ -3527,17 +3527,17 @@ END - + <b>%1</b> %2/sec, <b>%3</b> %4/min - + Async - + Change Änderung @@ -3547,97 +3547,97 @@ END An - + Gain Zunahme - + Rate Rate - + Wiring Schaltung - + Delta Span Delta Spanne - + Unit Maß - + ml ml - + Unit Weight Gewicht Maß - + g g - + Kg Kg - + l l - + in Ein - + out Aus - + Moisture loss: %1% Organic loss: %2% Feuchtigkeitsverlust: %1% Verlust Feststoffe: %2% - + Filter - + Emissivity Emissionsgrad - + ON EIN - + OFF AUS - + %1 to reach ET %2 %1 bis zum ET Ziel %2 - + %1 to reach BT %2 %1 bis zum BT Ziel %2 @@ -3647,17 +3647,17 @@ END VorlageXT - + XT Color XT Farbe - + XT XT - + current palette Aktuelle Palette @@ -3703,52 +3703,52 @@ END Marker - + Circle Kreis - + Square Box - + Pentagon - + Diamond Diamand - + Star Stern - + Hexagon 1 - + Hexagon 2 - + + + - + x - + None Keines @@ -4365,7 +4365,7 @@ Profile missing [CHARGE] or [DROP] Neues Profile angelegt - + Open Wheel Graph Kreisdiagramm Laden @@ -4495,7 +4495,7 @@ Profile missing [CHARGE] or [DROP] Verzeichnis wählen - + No profile found Kein Profil gefunden @@ -4590,262 +4590,262 @@ Profile missing [CHARGE] or [DROP] Sekunden - + Alarm Config Alarmeinstellungen - + Alarms are not available for device None Alarme sind für Gerät 'Kein' nicht verfügbar - + Switch Language Sprache umstellen - + Language successfully changed. Restart the application. Sprache erfolgreich umgestellt. Anwendung Neustarten. - + Import K202 CSV Importiere K202 CSV - + K202 file loaded successfully K202 Datei erfolgreich geladen - + Import K204 CSV Importiere K204 CSV - + K204 file loaded successfully K204 Datei erfolgreich geladen - + Import HH506RA CSV Importiere HH506RA CSV - + HH506RA file loaded successfully HH506RA Datei erfolgreich geladen - + Save Graph as PNG Diagramm als PNG speichern - + %1 size(%2,%3) saved %1 Grösse(%2,%3) gespeichert - + Save Graph as SVG Diagramm als SVG speichern - + %1 saved %1 gespeichert - + Invalid Wheel graph format Ungültiges Kreisdiagramm Datenformat - + Wheel Graph succesfully open Kreisdiagramm geladen - + Return the absolute value of x. Liefert den absoluten x Wert. - + Return the arc cosine (measured in radians) of x. Liefert den arc cosinus (in Radians) von x. - + Return the arc sine (measured in radians) of x. Liefert den arc sinus (in Radians) von x. - + Return the arc tangent (measured in radians) of x. Liefert den arc tangens (in Radians) von x. - + Return the cosine of x (measured in radians). Liefert den cosinus (in Radians) von x. - + Convert angle x from radians to degrees. Konvertiert den Winkel x von Radians nach Grad. - + Return e raised to the power of x. Liefert e hoch x. - + Return the logarithm of x to the given base. Liefert den Logarithmus von x zur gegebenen Basis. - + Return the base 10 logarithm of x. Liefert den 10er Logarithmus von x. - + Return x**y (x to the power of y). Liefert x hoch y. - + Convert angle x from degrees to radians. Konvertiert den Winkel x von Grand nach Radians. - + Return the sine of x (measured in radians). Liefert den sinus von x (in Radians). - + Return the square root of x. Liefert die Quadratwurzel von x. - + Return the tangent of x (measured in radians). Liefert den tangens von x (in Radians). - + MATHEMATICAL FUNCTIONS MATHEMATISCHE FUNKTIONEN - + SYMBOLIC VARIABLES SYMBOLISCHE VARIABLEN - + Symbolic Functions Symbolische Funktionen - + Save Palettes Paletten speichern - + Palettes saved Paletten gespeichert - + Invalid palettes file format Ungültige Paletten Datei - + Palettes loaded Paletten geladen - + Load Palettes Paletten laden - + Alarms loaded Alarme geladen - + Sound turned ON Ton AUS - + Sound turned OFF Ton AN - + Event #%1 added Ereignis #%1 hinzugefügt - + Event #%1 deleted Ereignis #%1 gelöscht - + No events found Keine Ereignisse gefunden - + Roast properties updated but profile not saved to disk Profileattribute geändert aber nicht abgespeichert - + Autosave ON. Prefix: %1 Autosave AN. Verzeichnis: %1 - + Autosave OFF Autosave AUS - + xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) - + <b>Event</b> hide or show the corresponding slider <b>Ereignis</b> anzeigen oder ausblenden des zugehörigen Schiebereglers - + <b>Action</b> Perform an action on slider release <b>Aktion</b> Aktion wird ausgeführt bei loslassen des Schieberglers - + <b>Command</b> depends on the action type ('{}' is replaced by <i>value</i>*<i>factor</i> + <i>offset</i>) <b>Befehl</b> abhängig von dem Aktionstyp ('{}' wird durch <i>value</i>*<i>factor</i> + <i>offset</i> ersetzt) - + Serial Command: ASCII serial command or binary a2b_uu(serial command) Serialerbefehl: ASCII serial befehl oder binar a2b_uu(serial befehl) @@ -4855,47 +4855,47 @@ Profile missing [CHARGE] or [DROP] Modbus Befehl: write([slaveId,register,value],..,[slaveId,register,value]) schreibt Werte in die Register der Slaves gegegebn bei den Ids - + DTA Command: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating DTA Befehl: Datenadresse eingeben : Wert, bsp. 4701:1000 und sv ist 100. immer mit 10 multiplizieren falls Werte mit Einheit: 0.1 / bsp. 4719:0 Heizung aus - + <b>Offset</b> added as offset to the slider value <b>Offset</b> wird dem Reglerwert hinzugefügt - + <b>Factor</b> multiplicator of the slider value <b>Faktor</b> Multiplikator des Reglerwertes - + Event custom buttons Wählbare Ereignis Taste - + Event configuration saved Ereigniskonfiguration gespeichert - + Found empty event type box Leerer Ereignistyp - + <b>Button Label</b> Enter \n to create labels with multiple lines. <b>Tastenname</b> Eingabe von \n erlaubt mehrzeilige Namen. - + <b>Event Description</b> Description of the Event to be recorded. <b>Tasten Beschreibung</b> Beschreibung des Ereignis welches registriert werden soll. - + <b>Event type</b> Type of event to be recorded. <b>Event Typ</b> Typ des Ereignisses welches registriert werden soll. @@ -4905,304 +4905,304 @@ Profile missing [CHARGE] or [DROP] <b>Ereigniswert</b> Wert des Ereignis (1-10) welches registriert werden soll - + <b>Action</b> Perform an action at the time of the event <b>Aktion</b> Aktion wird bei Registrierung des Ereignisses ausgeführt - + <b>Documentation</b> depends on the action type ('{}' is replaced by the event value): <b>Dokumentation</b> abhängig vom Ereignistyp ('{}' wird durch den Ereigniswert ersetzt): - + Call Program: A program/script path (absolute or relative) Programmaufruf: Der (absolute oder relative) Pfad zu einem Programm/Skript - + Multiple Event: Adds events of other button numbers separated by a comma: 1,2,3, etc. Ereignisgruppe: kombiniert Ereignisse gegeben als Kommagetrente Liste von Tastennummern: 1,2,3,.. - + <b>Button Visibility</b> Hides/shows individual button <b>Tasten Sichtbarkeit</b> Anzeigen/Ausblenden von einzelnen Tasten - + <b>Keyboard Shorcut: </b> [b] Hides/shows Extra Button Rows <b>Tastenkürzel: </b> [b] Anzeigen/Ausblenden der Benutzerdefinierten Tastenreihen - + Background does not match number of labels Profilevorlage entspricht nicht der Anzahl der Kurven - + Not enough time points for an ET curviness of %1. Set curviness to %2 Nicht genug Datenelemente für ET Rundheit of %1. Setze Rundheit auf %2 - + Designer Config Designer Einstellungen - + Not enough time points for an BT curviness of %1. Set curviness to %2 Nicht genug Datenelemente für BT Rundheit of %1. Setze Rundheit auf %2 - + CHARGE FÜLLEN - + DRY END TROCKNEN - + FC START FC START - + FC END FC ENDE - + SC START SC START - + SC END SC ENDE - + DROP LEEREN - + Incorrect time format. Please recheck %1 time Falsches Zeitformat. Zeit %1 überprüfen - + Times need to be in ascending order. Please recheck %1 time Zeiten müssen in aufsteigender Reihe geordnet sein. Zeiten %1 überprüfen - + Designer has been reset Designer wurde zurückgesetzt - + Serial Port Settings: %1, %2, %3, %4, %5, %6 Serieller Anschluss: %1, %2, %3, %4, %5, %6 - + External program Externes Programm - + PID to control ET set to %1 %2 ; PID to read BT set to %3 %4 PID um den ET zu steuern gesetzt auf %1 %2 ; PID zum lesen des BT gesetzt auf %3 %4 - + Device set to %1. Now, check Serial Port settings Gerät %1 ausgewählt. Überprüfe nun die Serielleneinstellungen - + Device set to %1. Now, chose serial port Gerät %1 ausgewählt. Serielleeinstellungen vornehmen - + Device set to CENTER 305, which is equivalent to CENTER 306. Now, chose serial port Gerät CENTER 305 ausgewählt, equivalent zum CENTER 306 ist. Serielleeinstellungen vornehmen - + Device set to %1, which is equivalent to CENTER 309. Now, chose serial port Gerät %1 ausgewählt, equivalent zum CENTER 309. Serielleeinstellungen vornehmen - + Device set to %1, which is equivalent to CENTER 303. Now, chose serial port Gerät %1 ausgewählt, equivalent zum CENTER 303. Serielleeinstellungen vornehmen - + Device set to %1, which is equivalent to CENTER 306. Now, chose serial port Gerät %1 ausgewählt, equivalent zum CENTER 306. Serielleeinstellungen vornehmen - + Device set to %1, which is equivalent to Omega HH506RA. Now, chose serial port Gerät %1 ausgewählt, equivalent zum Omega HH506RA. Serielleeinstellungen vornehmen - + Device set to %1, which is equivalent to Omega HH806AU. Now, chose serial port Gerät %1 ausgewählt, equivalent zum Omega HH806AU. Serielleeinstellungen vornehmen - + Device set to %1 Gerät %1 ausgewählt - + Device set to %1%2 Gerät %1%2 ausgewählt - + Device set to %1, which is equivalent to CENTER 302. Now, chose serial port Gerät %1 ausgewählt, equivalent zum CENTER 302. Serielleeinstellungen vornehmen - + Color of %1 set to %2 Farbe von %1 auf %2 gesetzt - + Save Wheel graph Kreisdiagramm Speichern - + Wheel Graph saved Kreisdiagramm gespeichert - + Load Alarms Alarme laden - + Save Alarms Alarme speichern - + <b>Status:</b> activate or deactive alarm <b>Status:</b> Alarm aktivieren oder deaktivieren - + <b>If Alarm:</b> alarm triggered only if the alarm with the given number was triggered before. Use 0 for no guard. <b>Wenn Alarm:</b> Alarm ist freigeschaltet falls der Alarm der gegebenen Nummber (ausser 0) voher ausgeführt wurde. - + <b>From:</b> alarm only triggered after the given event <b>Von:</b> Alarm wird erst nach dem ausgewählten Ereignis freigeschaltet - + <b>Time:</b> if not 00:00, alarm is triggered mm:ss after the event 'From' happend <b>Zeit:</b> falls nicht 00:00, wird der Alarm mm:ss nach dem Ereignis 'Von' ausgeführt - + <b>Source:</b> the temperature source that is observed <b>Quelle:</b> der Temperaturkanal der beobachtet wird - + <b>Condition:</b> alarm is triggered if source rises above or below the specified temperature <b>Bedingung:</b> der Alarm wird aktiviert sobald die Temperatur über bzw. unter den angegebenen Wert fällt bzw. steigt - + <b>Action:</b> if all conditions are fulfilled the alarm triggeres the corresponding action <b>Aktion:</b> die Aktion welche bei Aktivierung ausgeführt wird - + <b>NOTE:</b> each alarm is only triggered once <b>Anmerkung:</b> jeder Alarm wird nur einmalig ausgeführt - + OFF AUS - + CONTINUOUS CONTROL KONTINUIERLICHE STEUERUNG - + ON EIN - + STANDBY MODE STANDBY MODUS - + The rampsoak-mode tells how to start and end the ramp/soak Der Rampe/Haltezeit Modus beschreibt wie dieser gestartet und gestopped werden kann - + Your rampsoak mode in this pid is: Der Rampe/Haltezeit Modus dieses PID ist: - + Mode = %1 Modus = %1 - + Start to run from PV value: %1 Start von PV Wert: %1 - + End output status at the end of ramp/soak: %1 Beendigung des Ausgabestatus zum Ende der Rampe/Haltezeit: %1 - + Repeat Operation at the end: %1 OPeration am Ende wiederholen: %1 - + Recomended Mode = 0 Empfohlener Modus = 0 - + If you need to change it, change it now and come back later Fall es geändert werden muss, ändere es jetzt und verändere es später wieder - + Use the Parameter Loader Software by Fuji if you need to @@ -5210,7 +5210,7 @@ OPeration am Ende wiederholen: %1 - + Continue? Fortfahren? @@ -5220,52 +5220,52 @@ OPeration am Ende wiederholen: %1 Rampe/Haltezeit Modus - + Current sv = %1. Change now to sv = %2? sv Wert = %1. Jetzt auf sv = %2 setzen? - + Change svN svN ändern - + Current pid = %1. Change now to pid =%2? Ausgewählter pid = %1. Wechsele nun auf pid =%2? - + Ramp Soak start-end mode Rampe/Haltezeit Start End Modus - + Pattern changed to %1 Muster geändert auf %1 - + Pattern did not changed Muster wurde nicht geändert - + Ramp/Soak was found ON! Turn it off before changing the pattern Rampe/Haltezeit ist EIN! Zum ändern des Musters ausschalten - + Ramp/Soak was found in Hold! Turn it off before changing the pattern Rampe/Haltezeit ist auf HATL! Zum ändern des Musters ausschalten - + Activate PID front buttons Aktiviere PID Tasten - + Remember SV memory has a finite life of ~10,000 writes. @@ -5275,42 +5275,42 @@ Proceed? Fortfahren? - + RS OFF RS AUS - + RS on HOLD RS in Bereitschaft - + PXG sv#%1 set to %2 PXG sv#%1 auf %2 gesetzt - + PXR sv set to %1 PXR sv auf %1 gesetzt - + SV%1 changed from %2 to %3) SV%1 geändert von %2 auf %3) - + Unable to set sv%1 sv%1 konnte nicht gesetzt werden - + Unable to set sv sv konnte nicht gesetzt werden - + Unable to set new sv neuer sv Wert konnte nicht gesetzt werden @@ -5325,7 +5325,7 @@ Fortfahren? Designer Modus EIN - + <b>Temp:</b> the speficied temperature limit <b>Temp:</b> das angegebene Temperaturlimit @@ -5365,32 +5365,32 @@ Fortfahren? vorheriger Extra #2 T2 Wert - + Interpolation failed: no profile available Interpolation fehlgeschlagen: kein Profil verfügbar - + Playback Aid set ON at %1 secs Wiedergabehilfe AUS bei %1 secs - + No profile background found Keine Profilvorlage geladen - + Reading background profile... Profilevorlage wird gelesen... - + Tick the Float flag in this case. In diesem Falle muss das Gleitkomma Flag gesetzt werden. - + Device not set Gerät nicht ausgewählt @@ -5406,12 +5406,12 @@ Continue? Eine andere Kurvenanzahl gefunden - + [ET target 1 = %1] [BT target 1 = %2] [ET target 2 = %3] [BT target 2 = %4] [ET Ziel 1 = %1] [BT Ziel 1 = %2] [ET Ziel 2 = %3] [BT Ziel 2 = %4] - + Background profile not found Profilevorlage nicht gefunden @@ -5421,22 +5421,22 @@ Continue? <b>[CRTL N]</b> = Automatisches Speichern + Reset + START - + RS ON RS EIN - + SV changed from %1 to %2 SV von %1 auf %2 gesetzt - + Output status while ramp/soak operation set to OFF: %1 Ausgabestatus während Rampe/Haltezeit Operationen AUS: %1 - + Phases changed to %1 default: %2 Röstphasen geändert auf %1 default: %2 @@ -5446,7 +5446,7 @@ Continue? <b>[f]</b> = Vollbild Modus - + Save Graph as PDF Diagramm als PDF gespeichern @@ -5456,7 +5456,7 @@ Continue? Alarm %1 ausgelöst - + Phidget Temperature Sensor 4-input attached Phidget 4-Kanal Temperatur Sensor verbunden @@ -5466,7 +5466,7 @@ Continue? Phidget 4-Kanal Temperatur Sensor nicht verbunden - + Phidget Bridge 4-input attached Phidget 4-Kanal Bridge Sensor verbunden @@ -5476,12 +5476,12 @@ Continue? Phidget 4-Kanal Bridge Sensor nicht verbunden - + Device set to %1. Now, chose Modbus serial port Gerät %1 ausgewählt. Modbus Seriellenanschluss auswählen - + <b>But Not:</b> alarm triggered only if the alarm with the given number was not triggered before. Use 0 for no guard. <b>Aber Nicht:</b> Alarm wird nur ausgelöst falls der Alarm an der angegeben Position noch nicht ausgelöst wurde. Funktion deaktiviert falls auf 0 gesetzt. @@ -5497,17 +5497,17 @@ Continue? Der Import eines Profiles in den Designer alle Daten verwerfen ausser den signifikanten. Weitermachen? - + <b>Description:</b> the text of the popup, the name of the program, the number of the event button or the new value of the slider <b>Beschreibung:</b>Text der Nachricht, name des Programms, id der Ereignisstaste, oder der neue Reglerwert - + Load PID Settings PID Einstellungen laden - + Save PID Settings PID Einstellungen sichern @@ -5527,12 +5527,12 @@ Continue? Überabtastung ist nur aktiv bei einem Abtastinterval größer als 2ss. - + current background ET Vorlage ET - + current background BT Vorlage BT @@ -5542,7 +5542,7 @@ Continue? <b>[d]</b> = Wechsele xy Einheit (T/Delta) - + Phidget 1018 IO attached Phidget 1018 IO verbunden @@ -5552,22 +5552,22 @@ Continue? Phidget 1018 IO nicht verbunden - + Load Ramp/Soak Table Ramp/Soak Tabelle laden - + Save Ramp/Soak Table Ramp/Soak Tabelle speichern - + PID turned on PID AN - + PID turned off PID AUS @@ -5577,72 +5577,72 @@ Continue? <b>[q,w,e,r + <i>nn</i>]</b> = Schnelleingabe Ereignis - + Return the minimum of x and y. Liefert das Minimum von x und y. - + Return the maximum of x and y. Liefert das Maximum von x und y. - + The MODBUS device corresponds to input channels Das MODBUS Gerät bezieht sich auf die Kanäle - + 1 and 2.. The MODBUS_34 extra device adds 1 und 2. Das MODBUS_34 Gerät bezieht sich auf - + input channels 3 and 4. Inputs with slave die Eingänge 3 und 4. Kanäle mit Slave id 0 - + id set to 0 are turned off. Modbus function 3 werden nicht benutzt. Modbus Funktion 3 - + 'read holding register' is the standard. 'read holding register' ist der Standardfall. - + Modbus function 4 triggers the use of 'read Modbus Funktion 4 wird für 'read input - + 2 byte integer registers. A temperature of 145.2C haben 2 byte Integer Register. Eine Temperatur von 145.2C - + is often sent as 1452. In that case you have to wird oft als 1452 abgelegt. In diesem Fall muss die - + use the symbolic assignment 'x/10'. Few devices Symbolische Funktion 'x/10' benutzt werden. Einige - + hold data as 4 byte floats in two registers. Geräte halten Werte in 4 byte Gleitkomma Registern. - + Yocto Thermocouple attached Yocto Thermocouple verbunden - + Yocto PT100 attached Yocto PT100 verbunden @@ -5652,7 +5652,7 @@ Continue? Alarmaktion fehlgeschlagen: %1 - + Phidget Temperature Sensor IR attached Phidget Temperatur Sensor IR verbunden @@ -5662,87 +5662,87 @@ Continue? Phidget Temperature Sensor IR nicht verbunden - + input register'. Input registers (fct 4) usually verwendet. Input Register (Fkt. 4) reichen - + are from 30000-39999. Most devices hold data in üblicherweise from 30000-39999. Die meisten Geräte - + IO Command: set(n,0), set(n,1), toggle(n) to set Phidget IO digital output n IO Befehl: set(n,0), set(n,1), toggle(n) setzt Phidget IO digital Ausgang n - + ET value ET Wert - + BT value BT Wert - + Extra #1 T1 value Extra #T1 Wert - + Extra #1 T2 value Extra #1 T2 Wert - + Extra #2 T1 value Extra #2 T1 Wert - + Extra #2 T2 value Extra #2 T2 Wert - + Yn holds values sampled in the actual interval if refering to ET/BT or extra channels from devices listed before, otherwise Yn hold values sampled in the previous interval Yn referenziert Werte die im aktuellen Interval gelesen wurde, falls sie ET/BT oder extra Kanäle von Geräten gelistet vor diesen, ansonsten referenziert Yn den Wert der im vorherigen Intervall gelesen wurde - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) writes values to the registers in slaves specified by the given ids Modbus Befehl: write([slaveId,register,value],..,[slaveId,register,value]) oder wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) schreibt Werte in die Register der Slaves gegegebn bei den Ids - + <b>Event value</b> Value of event (1-100) to be recorded <b>Ereigniswert</b> Wert des Ereignis (1-100) welches registriert werden soll - + Phidget Temperature Sensor IR detached Phidget Temperatur Sensor IR nicht verbunden - + Phidget Temperature Sensor 4-input detached Phidget 4-Kanal Temperatur Sensor nicht verbunden - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) or wcoils(slaveId,register,&lt;bool&gt;) writes values to the registers in slaves specified by the given ids Modbus Befehl: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) or wcoils(slaveId,register,&lt;bool&gt;) writes values to the registers in slaves specified by the given ids - + Phidget Bridge 4-input detached Phidget 4-Kanal Bridge Sensor nicht verbunden - + Phidget 1018 IO detached Phidget 1018 IO nicht verbunden @@ -5754,28 +5754,28 @@ Continue? Hottop control turned on - Hottop Steuerung eingeschaltet + Hottop Steuerung eingeschaltet Radio Button - + PID - + Program Programm - + Meter Messgerät - + TC4 @@ -5864,107 +5864,107 @@ Continue? StatusBar - + Ready Bereit - + PID OFF PID AUS - + PID ON PID EIN - + Playback Aid set OFF Widergabehilfe AUS - + Decimal position successfully set to 1 Dezimalposition auf 1 gesetzt - + Problem setting decimal position Setzten der Dezimalposition fehlgeschlagen - + Problem setting thermocouple type Setzen des Temperaturfühlertyp fehlgeschlagen - + setting autotune... Autotune eingeschaltet... - + Autotune successfully turned OFF Autotune AUS - + Autotune successfully turned ON Autotune EIN - + wait... warten... - + Empty SV box Leeres SV Feld - + Unable to read SV SV konnte nicht gelesen werden - + Ramp/Soak operation cancelled Rampe/Haltezeit Operation abgebrochen - + No RX data Keine Daten empfangen - + Need to change pattern mode... Muster modus muss gewechselt werden... - + Pattern has been changed. Wait 5 secs. Muster wurde geändert. Bitte 5 sec. warten. - + Pattern could not be changed Muster konnte nicht geändert werden - + RampSoak could not be changed Rampe/Haltezeit konnte nicht geändert werden - + RS successfully turned OFF RS wurde ausgeschaltet - + setONOFFrampsoak(): Ramp Soak could not be set OFF setONOFFrampsoak(): Rampe/Haltezeit konnte nicht abgeschaltet werden @@ -5974,232 +5974,232 @@ Continue? getallsegments(): fehler beim Lesen von R/S - + Finished reading Ramp/Soak val. Rampe/Haltezeit erfolgreich gelesen. - + Finished reading pid values PID Werte erfolgreich gelesen - + setpid(): There was a problem setting %1 setpid(): Ein Problem ist aufgetreten %1 - + Ramp/Soak successfully written Rampe/Haltezeit erfolgreich geschrieben - + Time Units successfully set to MM:SS Zeiteinheit auf MM:SS gesetzt - + Problem setting time units Fehler beim setzen der Zeiteinheit - + Thermocouple type successfully set Temperaturfühlertyp geändert - + SV%1 set to %2 SV%1 auf %2 gesetzt - + Problem setting SV SV konnte nicht gesetzt werden - + Cancelled svN change svN Änderung abgebrochen - + PID already using sv%1 PID benutzt schon sv%1 - + setNsv(): bad response setNsv(): fehlerhafte Antwort - + setNpid(): bad confirmation setNpid(): fehlerhafter Bestätigung - + Cancelled pid change PID Änderung abgebrochen - + PID was already using pid %1 Es wurde bereits PID %1 gesetzt - + setNpid(): Unable to set pid %1 setNpid(): PID %1 konnte nicht ausgewählt werden - + SV%1 successfully set to %2 SV%1 auf %2 gesetzt - + pid #%1 successfully set to (%2,%3,%4) pid #%1 auf (%2,%3,%4) gesetzt - + pid command failed. Bad data at pid%1 (8,8,8): (%2,%3,%4) pid Befehl fehlgeschlagen. Fehlerhafte Daten bei pid%1 (8,8,8): (%2,%3,%4) - + PID is using pid = %1 PID verwendet pid = %1 - + PID is using SV = %1 PID verwendet SV = %1 - + Ramp Soak could not be set OFF Rampe/Haltezeit konnte nicht abgeschaltet werden - + PID set to OFF PID AUS - + PID set to ON PID AN - + Unable Fehlgeschlagen - + No data received Keine Daten empfangen - + Reading Ramp/Soak %1 ... Lese Rampe/Haltezeit %1 ... - + problem reading Ramp/Soak Probleme beim Lesen von Rampe/Haltezeit - + Current pid = %1. Proceed with autotune command? Ausgewählter PID = %1. Autotune Kommando ausführen? - + Autotune cancelled Autotune abgebrochen - + UNABLE to set Autotune Autotune fehlgeschlagen - + SV SV - + Ramp (MM:SS) Rampe (MM:SS) - + Soak (MM:SS) Haltezeit (MM:SS) - + getsegment(): problem reading ramp getsegment(): Rampe konnte nicht gelesen werden - + getsegment(): problem reading soak getsegment(): Haltezeit konnte nicht gelesen werden - + setsv(): Unable to set SV setsv(): SV konnte nicht gesetzt werden - + getallpid(): Unable to read pid values getallpid(): PID Werte konnten nicht gelesen werden - + getallpid(): Unable to read current sv getallpid(): SV Wert konnte nicht gelesen werden - + Work in Progress In Arbeit - + SV successfully set to %1 SV wurde auf %1 gesetzt - + RS ON RS EIN - + RS OFF RS AUS - + sending commands for p%1 i%2 d%3 Befehle für p%1 i%2 d%3 werden gesendet - + %1 successfully sent to pid %1 korrekt an PID übertragen - + pid changed to %1 pid geändert auf %1 @@ -6207,157 +6207,157 @@ Continue? Tab - + Math Berechnung - + General Allgemeines - + Notes Notizen - + Events Ereignisse - + Data Daten - + Config Konfiguration - + Graph Diagramm - + Buttons Tasten - + Extra Devices Zusatzgeräte - + HUD HUD - + Plotter Kurvenschreiber - + Style Stil - + Sliders Regler - + Palettes Paletten - + ET/BT ET/BT - + Extra Extras - + Modbus Modbus - + Scale Waage - + Symb ET/BT Symb ET/BT - + LCDs LCDs - + RS RS - + SV SV - + Set RS RS Einstellungen - + PID PID - + UI UI - + Color Farbe - + Quantifiers Quantifikatoren - + Ramp/Soak - + Phidgets - + Filter Filter - + Espresso @@ -6365,335 +6365,340 @@ Continue? Table - + Time Zeit - + Description Beschreibung - + Type Typ - + Value Wert - + Action Aktion - + Comm Port Anschluss - + Baud Rate Baudrate - + Byte Size Datenbits - + Parity Parität - + Stopbits Stoppbits - + Timeout Zeitlimit - + Width Linienstärke - + Color Farbe - + Opaqueness Transparenz - + Documentation Dokumentation - + Visibility Sichtbarkeit - + Device Meßgerät - + Color 1 Farbe 1 - + Color 2 Farbe 2 - + ET ET - + BT BT - + Label Beschriftung - + Text Color Textfarbe - + Label 1 Beschriftung 1 - + Label 2 Beschriftung 2 - + y1(x) y1(x) - + y2(x) y2(x) - + LCD 1 LCD 1 - + LCD 2 LCD 2 - + Curve 1 Kurve 1 - + Curve 2 Kurve 2 - + Parent Vorgänger - + Delete Wheel Kreisdiagramm Löschen - + Edit Labels Beschriftungen Editieren - + Update Labels Beschriftungen Aktualisieren - + Properties Egenschaften - + Radius Radius - + Starting angle Startwinkel - + Color Pattern Farbmuster - + Status Status - + If Alarm Wenn Alarm - + From Von - + Source Quelle - + Condition Bedingung - + SV SV - + Ramp HH:MM Rampe HH:MM - + Soak HH:MM Haltezeit HH:MM - + Projection Projektion - + Text Size Textgröße - + Temp Temp - + DRY END TROCKEN - + FC START FC START - + FC END FC ENDE - + SC START SC START - + SC END SC ENDE - + COOL KÜHL - + EVENT #%2 %3%4 EREIGNIS #%2 %3%4 - + DROP LEEREN - + CHARGE FÜLLEN - + But Not Aber Nicht - + DeltaET DeltaET - + DeltaBT DeltaBT - + EVENT #%1 %2%3 EREIGNIS #%1 %2%3 - + Beep Piepston - + Name - + Weight Gewicht + + + Nr + + Textbox @@ -7011,12 +7016,12 @@ Pungency Aktualisiert das Ereignis - + Save image using current graph size to a png format Speichert eine Abbildung des Graphen in PNG Format - + linear: linear interpolation cubic: 3rd order spline interpolation nearest: y value of the nearest point @@ -7025,177 +7030,177 @@ cubic: Splineinterpolation 3. Ordnung nearest: y-Wert des nächstliegenden Punkt - + ON/OFF logs serial communication EIN/AUS Serielles Protokoll - + Automatic generated name = This text + date + time Automatischgenerierter Name = <text> + Datum + Zeit - + ON/OFF of automatic saving when pressing keyboard letter [a] EIN/AUS des Automatischen Speicherns durch drücken der Taste [a] - + Sets the directory to store batch profiles when using the letter [a] Definiert das Verzeichnis in welchem Röstprofile automatisch gespeichert werden - + Allows to enter a description of the last event Beschreibung des letzten Ereignis - + Add new extra Event button Fügt eine extra Event Taste hinzu - + Delete the last extra Event button Löscht die letzte extra Event Taste - + Show help Offnet eine Hilfeseite - + Backup all palettes to a text file Speichert alle Paletten in eine Datei - + Action Type Aktionstyp - + Action String Aktionstext - + Aspect Ratio Verhältnis - + Example: 100 + 2*x Beispiel: 100 + 2*x - + Example: 100 + x Beispiel: 100 + x - + Erases wheel parent hierarchy Löscht die Übergeordnete Hierarchy - + Sets graph hierarchy child->parent instead of parent->child Umkehr der Super-/Sub Knoten Beziehung - + Increase size of text in all the graph Vergrösserung der Textgrösse in allen Diagrammen - + Decrease size of text in all the graph Verkleinerung der Textgrösse in allen Diagrammen - + Decorative edge beween wheels Dekorative Kante zwischen den Kreisen - + Line thickness Linenstärke - + Line color Linenfarbe - + Apply color pattern to whole graph Farbschema auf ganzes Diagramm anwenden - + Add new wheel Neuen Kreis hinzufügen - + Rotate graph 1 degree counter clockwise Graph gegen den Uhrzeigersinn rotieren - + Rotate graph 1 degree clockwise Graph mit dem Uhrzeigersinn rotieren - + Save graph to a text file.wg Kreisdiagramm in eine Datei speichern - + Sets Wheel graph to view mode Kreisdiagram anzeigen - + open graph file.wg Kreisdiagramm aus einer Datei laden - + Close wheel graph editor Kreisdiagramm Editor schliessen - + <b>Label</b>= <b>Beschriftung</b>= - + <b>Description </b>= <b>Beschreibung </b>= - + <b>Type </b>= <b>Typ </b>= - + <b>Value </b>= <b>Wert </b>= - + <b>Documentation </b>= <b>Dokumentation </b>= - + <b>Button# </b>= <b>Taste# </b>= @@ -7255,17 +7260,17 @@ nearest: y-Wert des nächstliegenden Punkt Zurücksetzen - + Restore all palettes from a text file Läd alle Paletten von einer Datei - + Clear alarms table Alarmtabelle zurücksetzen - + Interval Intervall diff --git a/translations/artisan_el.ts b/translations/artisan_el.ts index 570013ccf..b559e13b3 100644 --- a/translations/artisan_el.ts +++ b/translations/artisan_el.ts @@ -137,7 +137,7 @@ END ΛΗΞΗ ΨΥΞΗΣ - + Update Ενημέρωση @@ -147,92 +147,92 @@ END PID Βοήθεια - + OK Ενταξει - + Cancel Ακύρωση - + Color Χρωμα - + Plot Σχεδιο - + Background Φοντο - + Virtual Device Εικονικη Συσκευη - + Save Image Αποθηκευση Εικονας - + Help Βοηθεια - + Info Πληροφοριες - + Set Ορισμος - + Defaults Προκαθορισμενα - + Order Εντολη - + Add Προσθηκη - + Delete Καταργηση - + in Εισοδο - + out Εξοδο - + Search Αναζητηση - + Path Διαδρομη @@ -247,57 +247,57 @@ END Επαναφορα απο - + Save Αποθηκευση - + Load Φορτωμα - + Del Ακυρωση - + Align Ευθυγραμμιση - + Up Πανω - + Down Κατω - + Left Απιστερα - + Right Δεξια - + Reset Επαναφορα - + Close Κλεισιμο - + Create Δημιουργια @@ -307,352 +307,352 @@ END Ανιχνευση Θυρων - + Select Επιλογη - + Grid Πλεγμα - + Title Τιτλος - + Y Label Επιγραφη Αξονα Y - + X Label Επιγραφη Αξονα Χ - + Drying Phase Φαση Ξηρανσης - + Maillard Phase Φαση Μaillard - + Development Phase Φαση Αναπτυξης - + Cooling Phase Φαση Ψυξης - + ET ET - + BT BT - + DeltaET DeltaET - + DeltaBT DeltaBT - + Markers Δεικτες - + Text Κειμενο - + Watermarks Υδατογραφηματα - + C Lines Γραμμες C - + Grey Γκριζο - + LED LED - + B/W Ασπρομαυρο - + Reset Parents Επαναφορα Parents - + Reverse Hierarchy Αντιστροφη Ιερα - + + + - + - - - + Line Color Χρωμα Γραμμης - + < - + > - + Save File Αποθυκευση Αρχειου - + Save Img Αποθυκευση Εικονας - + View Mode Λειτυργια Προβολης - + Open Ανοιγμα - + Set Color Ορισμος Χρωματος - + All On Λειτουργια Ολων - + All Off Παυση Ολων - + Read Ra/So values Αναγνωση Τιμων Ra/So - + RampSoak ON Εναρξη Γραφηματος - + RampSoak OFF Παυση Γραφηματος - + PID OFF Εναρξη PID - + PID ON Παυση PID - + Write SV Εγγραφη SV - + SV Buttons ON Εναρξη Πληκτρα SV - + SV Buttons OFF Παυση Πληκτρα SV - + Read SV Αναγνωση SV - + Set p Ορισμος p - + Set i Ορισμος i - + Set d Ορισμος d - + Autotune ON Eναρξη αυτοματου συντονισμου - + Autotune OFF Παυση αυτοματου συντονισμου - + Read PID Values Αναγνωση Τιμων PID - + Read Αναγνωση - + Set ET PID to 1 decimal point Ορισμος ΕΤ PID σε 1 δεκαδικο - + Set BT PID to 1 decimal point Ορισμος BT PID σε 1 δεκαδικο - + Read RS values Αναγνωση Τιμων RS - + Write SV1 Εγγραφη SV1 - + Write SV2 Εγγραφη SV2 - + Write SV3 Εγγραφη SV3 - + Write SV4 Εγγραφη SV4 - + Write SV5 Εγγραφη SV5 - + Write SV6 Εγγραφη SV6 - + Write SV7 Εγγραφη SV7 - + ON SV buttons Εναρξη Πληκτρα SV - + OFF SV buttons Παυση Πληκτρα SV - + Read SV (7-0) Αναγνωση SV(7-0) - + pid 1 pid1 - + pid 2 pid2 - + pid 3 pid3 - + pid 4 pid4 - + pid 5 pid5 - + pid 6 pid6 - + pid 7 pid7 @@ -662,87 +662,87 @@ END Αναγνωση Ολων - + Set ET PID to MM:SS time units Ορισμος ET PID σε χρονικη μορφη ΛΛ:ΔΔ - + Write Εγγραφη - + scan - + Apply - + Insert - + Clear - + Write All - + Write RS values - + Write SV (7-0) - + Read PIDs - + Write PIDs - + On - + Off - + calc - + unit - + << - + >> @@ -750,122 +750,122 @@ END CheckBox - + Heavy FC Eντονο FC - + Low FC Αδυναμο FC - + Light Cut Ανοικτοχρωμο - + Dark Cut Σκουροχρωμο - + Drops Στιγματα - + Oily Ελαιωδης - + Uneven Ανομοιο - + Tipping Tipping - + Scorching scorching - + Divots Καψιματα - + DeltaET DeltaET - + DeltaBT DeltaBT - + Smooth Spikes Λειανση Παρασιτων - + Drop Spikes Απορριψη Παρασιτων - + Limits Ορια - + Projection Προβολη - + Show Εμφανιση - + Beep Beep - + Delete roast properties on RESET Διαγραφη Δεδομενων στην Επαναφορα - + Serial Log ON/OFF Serial Log ON/OFF - + Autosave [a] Αυτοματη Αποθυκευση - + Lock Max Κλειδωμα Τιμης Max - + Button Πληκτρο - + Mini Editor Συντακτης @@ -875,82 +875,82 @@ END Αυτοματο ΦΟΡΤΩΜΑ/ΞΕΦΟΡΤΩΜΑ - + CHARGE ΦΟΡΤΩΜΑ - + DRY END ΤΕΛΟΣ ΞΗΡΑΝΣΗΣ - + FC START ΕΝΑΡΞΗ FC - + FC END ΛΗΞΗ FC - + SC START ΕΝΑΡΞΗ SC - + SC END ΛΗΞΗ SC - + DROP ΞΕΦΟΡΤΩΜΑ - + COOL END ΛΗΞΗ ΨΥΞΗΣ - + Auto Adjusted Αυτοματη Ρυθμιση - + Watermarks Υδατογραφηματα - + Background Φοντο - + Text Κειμενο - + Events Συμβαντα - + Playback Aid Βοηθημα Playback - + Time Χρονος - + Bar Μπαρα @@ -960,117 +960,117 @@ END d/m - + ETBTa ETBTa - + Evaluation Αξιολογηση - + Characteristics Χαρακτηριστικα - + ET ET - + BT BT - + Smooth2 - + Decimal Places - + Auto CHARGE - + Auto DROP - + Mark TP - + Phases LCDs - + Auto DRY - + Auto FCs - + Modbus Port - + Load alarms from profile - + Start PID on CHARGE - + Load Ramp/Soak table from profile - + Control Button - + Ratiometric - + Align FCs - + /min - + Alarm Popups - + Lock @@ -1098,112 +1098,112 @@ END Ανεμιστηρας - + linear Γραμμικο - + newton newton - + metrics μετρικα - + thermal θερμικο - + cubic κυβικο - + nearest κοντινοτερο - + g γραμ - + Kg Κιλα - + ml μιλ - + l λ - + ET ET - + BT BT - + upper right πανω δεξια - + upper left πανω αριστερα - + lower left κατω αριστερα - + lower right κατω δεξια - + right δεξια - + center left κεντρο αριστερα - + center right κεντρο δεξια - + lower center κατω κεντρικα - + upper center πανω κεντρικα - + center κεντρο @@ -1213,367 +1213,367 @@ END 30 δευτερολεπτα - + 1 minute 1 λεπτο - + 2 minute 2 λεπτα - + 3 minute 3 λεπτα - + 4 minute 4 λεπτα - + 5 minute 5 λεπτα - + solid Συμπαγες - + dashed διακεκομμενο - + dashed-dot διακεκομμενο-τελειες - + dotted με τελειες - + None Κανενα - + Event #0 Συμβαν#0 - + Event #%1 Συμβαν#%1 - + lb λιμπρες - + liter λιτρα - + gallon γαλονια - + quart τεταρτο - + pint πιντα - + cup φλυτζανι - + cm^3 εκ.^3 - + Type Τυπος - + Value Αξια - + Serial Command Σειριακη Εντολη - + Modbus Command Εντολη Modbus - + DTA Command Εντολη DTA - + Call Program Ανακληση Προγραμματος - + OFF ΤΕΛΟΣ - + ON ΕΝΑΡΞΗ - + Multiple Event Πολλαπλα Συμβαντα - + DeltaBT DeltaBT - + DeltaET DeltaET - + SV Commands Εντολες SV - + Ramp Commands Εντολες Γραφηματος - + little-endian little-endian - + grey γκριζο - + Dark Grey Σκουρο Γκριζο - + Slate Grey Σαγρε Γκριζο - + Light Gray Ανοικτο Γκριζο - + Black Μαυρο - + White Λευκο - + Transparent Διαφανο - + Flat Φλατ - + Perpendicular Καθετα - + Radial Ακτινωτα - + START ΕΝΑΡΞΗ - + CHARGE ΦΟΡΤΩΜΑ - + TP ΤΡ - + DRY END ΤΕΛΟΣ ΞΥΡΑΝΣΗΣ - + FC START ΕΝΑΡΞΗ FC - + FC END ΛΗΞΗ FC - + SC START ΕΝΑΡΞΗ SC - + SC END ΛΗΞΗ SC - + DROP ΞΕΦΟΡΤΩΜΑ - + COOL ΨΥΞΗ - + below αποκατω - + above αποπανω - + Pop Up Εμφανιση - + Event Button Πληκτρο Συμβαντος - + Slider Ολισθητης - + classic - + xkcd - + Default Αρχικο - + Humor - + Comic - + DRY - + FCs - + FCe - + SCs - + SCe - + COOL END ΛΗΞΗ ΨΥΞΗΣ - + IO Command - + Hottop Heater - + Hottop Fan - + Hottop Command @@ -1644,12 +1644,12 @@ END επεξεργασια κειμενου - + profiles προφιλ - + other Αλλα @@ -1657,17 +1657,17 @@ END Error Message - + Exception: Εξαιρεση: - + Value Error: Σφαλμα Τιμης: - + IO Error: Σφαλμα ΙΟ: @@ -1677,42 +1677,42 @@ END Σφαλμα - + Unable to move CHARGE to a value that does not exist Αδυνατη μετακινηση ΦΟΡΤΩΜΑ σε τιμη μη υπαρκτη - + Modbus Error: Σφαλμα Modbus: - + Serial Exception: Σειριακη Εξαιρεση: - + F80h Error Σφαλμα F80h - + CRC16 data corruption ERROR. TX does not match RX. Check wiring Σφαλμα πληροφοριας CRC16.TX δεν αντιστοιχει RX.Ελεγξτε συνδεσμολογια - + No RX data received Δεν εγινε ληψη πληροφοριων RX - + DTAcommand(): %1 bytes received but 15 needed ΕντοληDTA():%1bytes εληφθη αλλα χρειζει15 - + Unable to open serial port Αδυνατη επικοινωνια με σειριακη θυρα @@ -1722,62 +1722,62 @@ END HH806AUθερμο():%1bytes εληφθησαν αλλα χρειζει14 - + HH806Wtemperature(): Unable to initiate device HH806Wθερμο():Αδυνατη συνδεση συσκευης - + HH506RAGetID: %1 bytes received but 5 needed HH506RAGetID:%1bytes εληφθη αλλα χρειζει5 - + HH506RAtemperature(): Unable to get id from HH506RA device HH506RAθερμο():Αδυνατη ληψη id απο συσκευη - + HH506RAtemperature(): %1 bytes received but 14 needed HH506RAθερμο():%1bytes εληφθη αλλα χρειζει 14 - + CENTER302temperature(): %1 bytes received but 7 needed CENTER302θερμο():%1bytes εληφθη αλλα χρειζει7 - + CENTER303temperature(): %1 bytes received but 8 needed CENTER303θερμο():%1bytes εληφθη αλλα χρειζει8 - + CENTER306temperature(): %1 bytes received but 10 needed CENTER306θερμο():%1bytes εληφθη αλλα χρειζει10 - + CENTER309temperature(): %1 bytes received but 45 needed CENTER309θερμο():%1bytes εληφθη αλλα χρειζει45 - + Arduino could not set channels Το arduino αδυνατει να διαμορφωση καναλια - + Arduino could not set temperature unit Το arduino αδυνατει να επικοινωνησει με θερμομετρο - + Serial Exception: invalid comm port Εξαιρεση σειριακη:ακυρη θυρα επικοινωνιας - + Serial Exception: timeout Εξαιρεση σειριακη:τελος χρονου @@ -1787,37 +1787,37 @@ END Σφαλμα συσκευης - + Segment values could not be written into PID Τιμη δεν εγγραφεται στο PID - + RampSoak could not be changed Αδυνατη η αλλαγη του γραφηματος - + pid.readoneword(): %1 RX bytes received (7 needed) for unit ID=%2 pid.readoneword():%1 RX bytes εληφθη(χρειζει7)για συσκευη ID=%2 - + Univariate: no profile data available μονοπαραγοντική:Δεν ευρεθει προφιλ - + Polyfit: no profile data available - + MS6514temperature(): %1 bytes received but 16 needed - + HH806AUtemperature(): %1 bytes received but 16 needed HH806AUθερμο():%1bytes εληφθησαν αλλα χρειζει14 {806A?} {1 ?} {16 ?} @@ -1827,7 +1827,7 @@ END - + Arduino could not set filters @@ -1888,147 +1888,147 @@ END Form Caption - + Extras Εξτρα - + Roast Properties Ιδιοτητες ψησιματος - + Artisan Platform Πλατφορμα artisan - + Settings Viewer Ρυθμισεις - + Serial Log Σειριακο αρχειο - + Error Log Αρχειο σφαλματων - + Message History Ιστορικο μυνηματων - + Keyboard Autosave [a] Πληκτρολογιο αυτοματης αποθυκευσης[a] - + AutoSave Path Διαδρομη αυτοματης αποθυκευσης - + Axes Αξονες - + Roast Calculator Υπολογιστης Ψσιματος - + Events Συμβαντα - + Roast Phases Φασεις Ψησιματος - + Cup Profile Προφιλ cup - + Profile Background Προφιλ Φοντου - + Statistics Στατιστικα - + Designer Config Διαμορφωση σχεδιαστηριου - + Manual Temperature Logger Χειροκινητη καταγραφη δερμοκρασιας - + Serial Ports Configuration Διαμορφωση σειριακων θυρων - + Device Assignment Καταχωρηση συσκευης - + Colors Χρωματα - + Wheel Graph Editor Διαμορφωση Γραφηματος Ροδας - + Alarms Συναγερμοι - + Fuji PXR PID Control Ελεγχος Fuji PXR PID - + Fuji PXG PID Control Ελεγχος Fuji PXG PID - + Delta DTA PID Control Ελεγχος Delta DTA PID - + Arduino Control - + Volume Calculator - + Tare Setup @@ -2036,247 +2036,247 @@ END GroupBox - + Curves Καμπυλες - + LCDs LCDς - + HUD ΠΡΟΒ - + Input Filters Φιλτρα Εισοδων - + Interpolate Παρεμβολη - + Univariate Μονοπαραγων - + Appearance Εμφανιση - + Resolution Αναλυση - + Sound Ηχος - + Times Χρονοι - + Time Axis Αξονας Χρονου - + Temperature Axis Αξονας Θερμοκρασιας - + DeltaBT/DeltaET Axis Αξονες DeltaBT/DeltaET - + Legend Location Θεση Εμφανισης - + Grid Πλεγμα - + Rate of Change Ρυθμος Μεταβολης - + Temperature Conversion Μετατροπη Θερμοκρασιας - + Weight Conversion Μετατροπη Βαρους - + Volume Conversion Μετατροπη Ογκου - + Event Types Ειδη Συμβαντων - + Default Buttons Προεπιλεγμενα Πληκτρα - + Management Διαχειρηση - + Evaluation Αξιολογηση - + Display Εμφανιση - + Initial Settings Αρχικες Ρυθμισεις - + Input 1 Εισοδος 1 - + Input 2 Εισοδος 2 - + Input 3 Εισοδος 3 - + Input 4 Εισοδος 4 - + PID PID - + Arduino TC4 Arduino TC4 - + External Program Εξωτερικο Προγραμμα - + Symbolic Assignments Συμβολικες αναθεσεις - + Timer LCD Χρονικο LCD - + ET LCD ET LCD - + BT LCD BT LCD - + DeltaET LCD DeltaET LCD - + DeltaBT LCD DeltaBT LCD - + Extra Devices / PID SV LCD Εξτρα Συσκευες/PID SV LCD - + Label Properties Ιδιοτητες Επιγραφων - + Polyfit - + Look - + Network - + p-i-d - + Set Value - + Phidget IO - + Phidgets 1045 - + Phidgets 1046 RTD - + WebLCDs @@ -2286,12 +2286,12 @@ END Διαστημα Δειγματοληψειας - + Phidgets 1048/1051 - + Sampling @@ -2487,12 +2487,12 @@ END βαθμ/λεπτ - + ET ΕΤ - + BT ΒΤ @@ -2507,42 +2507,42 @@ END DeltaBT - + at στους - + CHARGE ΦΟΡΤΩΜΑ - + DRY END ΛΗΞΗ ΞΥΡΑΝΣΗΣ - + FC START ΕΝΑΡΞΗ FC - + FC END ΛΗΞΗ FC - + SC START ΕΝΑΡΞΗ SC - + SC END ΛΗΞΗ SC - + DROP ΞΕΦΟΡΤΩΜΑ @@ -2577,7 +2577,7 @@ END d/m - + Time Χρονος @@ -2612,32 +2612,32 @@ END Event#<b>%1</b> - + City City - + City+ City+ - + Full City Full City - + Full City+ Full City+ - + Light French Light French - + French French @@ -2647,7 +2647,7 @@ END %1 to reach ET target%2 - + at %1 at%1 @@ -2657,192 +2657,192 @@ END %1 to reach BT target%2 - + %1 after FCs %1afterFCS - + %1 after FCe %1afterFCe - + ET - BT = %1 ET-BT=%1 - + ET - BT = %1%2 ET-BT=%1%2 - + ET Target 1 ET Στοχος1 - + BT Target 1 BT Στοχος1 - + ET Target 2 ET Στοχος2 - + BT Target 2 BT Στοχος2 - + Mode Τροπος - + ET p-i-d 1 ETp-i-d1 - + Smooth Deltas Αμβλυνση των Delta - + Smooth Curves Αμβλυνση Καμπυλων - + min Ελαχιστο - + max Μεγιστο - + Y(x) Y(x) - + COOL ΨΥΞΗ - + Title Τιτλος - + Date Ημερομηνια - + Beans Κοκκοι - + Weight Βαρος - + in Εισοδος - + out Εξοδος - + % % - + Volume Ογκος - + Density Πυκνοτητα - + per προς - + Bean Size Μεγεθος Κοκκου - + mm μμ - + Whole Color Χρωμα Κοκκων - + Ground Color Χρωμα Αλεσμενου - + Moisture Greens Συνθηκες Αποθυκευσης - + % % - + Ambient Conditions Συνθηκες Περιβαλλοντος - + Roaster Ψηστηρι - + Operator Χειρηστης - + Roasting Notes Σημειωσεις Ψησιματος - + Cupping Notes Σημειωσεις Cupping - + Ambient Source Πηγη Περιβαλλοντος @@ -2852,492 +2852,492 @@ END Πυκνοτητα εισ:%1g/l=>Πυκνοτητα εξοδ:%2g/l - + (%1 g/l) (%1 g/l) - + Number of errors found %1 Αριθμος σφαλματων%1 - + Max Μεγιστο - + Min Ελαχιστο - + Rotation Περιστροφη - + Initial Max Αρχικο Μεγιστο - + Step Βημα - + Style Στυλ - + Width Πλατος - + Opaqueness Διαφανεια - + Enter two times along profile Εισοδος δυο χρονων κατα μηκος προφιλ - + Start (00:00) Εναρξη(00:00) - + End (00:00) Ληξη(00:00) - + Fahrenheit Φαρεναιτ - + Celsius Κελσιου - + Time syntax error. Time not valid Σφαλμα χρονικης συνταξης.Χρονος μη συμβατος - + Error: End time smaller than Start time Σφαλμα:Χρονος ληξης μικροτερος εναρξης - + Best approximation was made from %1 to %2 Βελτιστη προσεγγιση υπηρξε απο %1 εως %2 - + No profile found Δεν ευρεθει προφιλ - + Bars Μπαρες - + Color Χρωμα - + Marker Σημανση - + Thickness Παχος - + Opacity Διαφανεια - + Size Μεγεθος - + Max buttons per row Μεγιστος αριθμος πληκτρων ανα σειρα - + Color Pattern Προτυπο χρωματων - + palette # Προτυπο# - + Event Συμβαν - + Action Δραση - + Command Εντολη - + Offset Οφσετ - + Factor Παραγων - + Drying Ξυρανση - + Maillard Maillard - + Development Αναπτυξη - + Default Αρχικο - + Aspect Ratio Αναλογια - + ET Color Χρωμα ET - + BT Color Χρωμα ΒΤ - + DeltaET Color Χρωμα DeltaET - + DeltaBT Color Χρωμα DeltaBT - + Text Warning Κειμενο Προειδοποιησης - + sec δευτ - + Cooling Ψυξη - + Curviness Καμπυλοτητα - + Events Playback Αναπαραγωγη Συμβαντων - + Comm Port Θυρα Επικοινωνιας - + Baud Rate Ρυθμος Baud - + Byte Size Mεγεθος Byte - + Parity Ισοτιμια - + Stopbits Stopbits - + Timeout Xρονικη Ληξη - + Settings for non-Modbus devices Ρυθμισεις για μη Modbus συσκευες - + Slave Υποχειριο - + Register Καταχωρηση - + Float Πλευση - + Function Λειτουργια - + Device Συσκευη - + Control ET Ελεγχος ET - + Read BT Αναγνωση ΒΤ - + Type Τυπος - + RS485 Unit ID RS485 Μοναδα ID - + ET Channel Καναλι ΕΤ - + BT Channel Καναλι ΒΤ - + AT Channel Καναλι ΑΤ - + ET Y(x) ΕΤ Υ(χ) - + BT Y(x) ΒΤ Υ(χ) - + Ratio Αναλογια - + Text Κειμενο - + Edge Ακρο - + Line Γραμμη - + Color pattern Προτυπο Χρωματων - + dg dg - + Enter description Εισαγωγη περιγραφης - + Ramp Soak HH:MM<br>(1-4) Γραφημα ΩΩ:ΔΔ<br>(1-4) - + Ramp Soak HH:MM<br>(5-8) Γραφημα ΩΩ:ΔΔ<br>(5-8) - + Ramp/Soak Pattern Προτυπο Γραφηματος - + WARNING ΠΡΟΕΙΔΟΠΟΙΗΣΗ - + Writing eeprom memory Εγγραφη Μνημης eeprom - + <u>Max life</u> 10,000 writes <u>ΜεγΖωη</u>10,000 εγγραφες - + Infinite read life. Αρχικη αναγνωση ζωης. - + After <u>writing</u> an adjustment,<br>never power down the pid<br>for the next 5 seconds <br>or the pid may never recover. - + Read operations manual Διαβαστε οδηγιες λειτουργιας - + ET Thermocouple type Τυπος θερμοστοιχειου ΕΤ - + BT Thermocouple type Τυπος θερμοστοιχειου ΒΤ - + NOTE: BT Thermocouple type is not stored in the Artisan settings ΣΗΜΕΙΩΣΗ:Ο Τυπος Θερμοστοιχειου δεν περιεχεται στις ρυθμισεις του artisan - + Artisan uses 1 decimal point Το artisan χρησιμοποιει 1 δεκαδικο στοιχειο - + Ramp Soak (MM:SS)<br>(1-7) Γραφημα (ΩΩ:ΔΔ)<br>(1-7) - + Ramp Soak (MM:SS)<br>(8-16) Γραφημα (ΩΩ:ΔΔ)<br>(8-16) - + Pattern Προτυπο - + SV (7-0) SV(7-0) - + Write Εγγραφη - + P Ρ - + I Ι - + D D - + Artisan Fuji PXG uses MINUTES:SECONDS units in Ramp/Soaks Το artisan Fuji PXG χρησιμοποιει ΛΕΠΤΑ:ΔΕΥΤΕΡΑ στο γραφημα - + SV SV @@ -3367,12 +3367,12 @@ END - + Start - + End @@ -3407,97 +3407,97 @@ END - + Window - + Path Effects - + Font - + Prefix - + Source Πηγη - + Cycle - + Lookahead - + Manual - + Ramp/Soak - + Background Φοντο - + SV Buttons - + SV Slider - + Coarse - + Host - + Port - + HUD Button - + Raw - + ServerId: - + Password: @@ -3532,12 +3532,12 @@ END - + Moisture Roasted - + Density in: %1 g/l => Density out: %2 g/l @@ -3562,112 +3562,112 @@ END - + <b>%1</b> %2/sec, <b>%3</b> %4/min - + Async - + Change - + Gain - + Rate - + Wiring - + Delta Span - + Unit - + ml μιλ - + Unit Weight - + g γραμ - + Kg Κιλα - + l λ - + in Εισοδο - + out Εξοδο - + Moisture loss: %1% Organic loss: %2% - + Filter - + Emissivity - + ON - + OFF - + %1 to reach ET %2 - + %1 to reach BT %2 @@ -3677,17 +3677,17 @@ END - + XT Color - + XT - + current palette @@ -3733,52 +3733,52 @@ END Marker - + Circle Κυκλος - + Square Τετραγωνο - + Pentagon Πενταγωνο - + Diamond Διαμαντι - + Star Αστερι - + Hexagon 1 Εξαγωνο1 - + Hexagon 2 Εξαγωνο2 - + + + - + x χ - + None Κανενα @@ -4399,7 +4399,7 @@ Profile missing [CHARGE] or [DROP] Δημιουργηθηκε νεο προφιλ - + Open Wheel Graph Ανοιγμα γραφικου ροδας @@ -4559,7 +4559,7 @@ Profile missing [CHARGE] or [DROP] Επιλεξτε Ευρετηριο - + No profile found Δεν ευρεθει Προφιλ @@ -4665,152 +4665,152 @@ Continue? Δευτερολεπτα - + Alarm Config Διαμορφωση Συναγερμου - + Alarms are not available for device None Συναγερμοι δεν ειναι διαθεσιμοι για συσκευη Καμια - + Switch Language Αλλαγη Γλωσσας - + Language successfully changed. Restart the application. Επιτυχης αλλαγη γλωσσας.Επανεκκινηστε Εφαρμογη. - + Import K202 CSV Εισαγωγη Κ202 CSV - + K202 file loaded successfully Αρχειο Κ202 φορτωθηκε με επιτυχια - + Import K204 CSV Εισαγωγη K204 CSV - + K204 file loaded successfully Αρχειο Κ204 φορτωθηκε με επιτυχια - + Import HH506RA CSV Εισαγωγη HH506RA CSV - + HH506RA file loaded successfully Αρχειο HH506RA φορτωθηκε με επιτυχια - + Save Graph as PNG Αποθυκευση Γραφικου ως PNG - + %1 size(%2,%3) saved %1 μεγεθος(%2,%3)αποθυκευτηκε - + Save Graph as SVG Αποθυκευση Γραφικου ως SVG - + %1 saved %1 Αποθυκευτηκε - + Invalid Wheel graph format Μη αποδεκτο φορμα Γραφικου Ροδας - + Wheel Graph succesfully open Γραφικο Ροδας ανοιξε με επιτυχια - + Return the absolute value of x. Επιστροφη απολυτης τιμης χ. - + Return the arc cosine (measured in radians) of x. Επιστροφη arc cosine του χ. - + Return the arc sine (measured in radians) of x. Επιστροφη arc cine του χ. - + Return the arc tangent (measured in radians) of x. Επιστροφη arc tangent του χ. - + Return the cosine of x (measured in radians). Επιστροφη cosine του χ. - + Convert angle x from radians to degrees. Μετατροπη γωνιας χ απο radian σε degrees. - + Return e raised to the power of x. Eπιστροφη e raised στην δυναμη του χ. - + Return the logarithm of x to the given base. Επιστροφη λογαριθμου χ στην δεδομενη βαση. - + Return the base 10 logarithm of x. Επιστροφη βασης 10 σε λογαριθμο του χ. - + Return x**y (x to the power of y). Επιστροφη x**y. - + Convert angle x from degrees to radians. Μετατροπη γωνιας χ απο degrees σε radians. - + Return the sine of x (measured in radians). Επιστροφη sine του χ. - + Return the square root of x. Επιστροφη τετραγωνικης ριζας του x. - + Return the tangent of x (measured in radians). Eπιστροφη tangent του x. @@ -4845,122 +4845,122 @@ Continue? προηγουμενη τιμη Εξτρα #2 Τ2 - + MATHEMATICAL FUNCTIONS MAΘΗΜΑΤΙΚΕΣ ΛΕΙΤΟΥΡΓΙΕΣ - + SYMBOLIC VARIABLES ΣΥΜΒΟΛΙΚΑ ΚΥΜΑΙΝΟΜΕΝΑ - + Symbolic Functions Συμβολικες Λειτουργιες - + Save Palettes Αποθυκευση Προτυπων - + Palettes saved Προτυπα Αποθυκευτηκαν - + Invalid palettes file format Μη Αποδεκτη φορμα Προτυπων - + Palettes loaded Προτυπα Φορτωθηκαν - + Load Palettes Φορτωση Προτυπων - + Alarms loaded Συναγερμοι Φορτωθηκαν - + Interpolation failed: no profile available Σφαλμα:Δεν ευρεθει προφιλ - + Sound turned ON Ηχος ΕΝΕΡΓΟΣ - + Sound turned OFF Ηχος ΑΝΕΝΕΡΓΟΣ - + [ET target 1 = %1] [BT target 1 = %2] [ET target 2 = %3] [BT target 2 = %4] - + Event #%1 added Συμβαν #%1 προστεθηκε - + Event #%1 deleted Συμβαν #%1 διαγραφηκε - + No events found Δεν ευρεθησαν συμβαντα - + Roast properties updated but profile not saved to disk Ιδιοτητες Ψησιματος ενημερωθηκαν αλλα δεν εγινε αποθυκευση του Προφιλ - + Autosave ON. Prefix: %1 Αυτοματη Αποθυκευση ΕΝΕΡΓΗ.Προκαθορισμενο: %1 - + Autosave OFF Αυτοματη Αποθυκευση ΑΝΕΝΕΡΓΗ - + xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) οριοχ=(%3,%4) οριοy = (%1,%2) οριοz = (%5,%6) - + <b>Event</b> hide or show the corresponding slider <b>Συμβαν</b>αποκρυψη η εμφανιση του αντιστοιχου σλαιντερ - + <b>Action</b> Perform an action on slider release <b>Ενεργεια</b>Ενεργοποιηστε κατα την απελευθερωση του σλαιντερ - + <b>Command</b> depends on the action type ('{}' is replaced by <i>value</i>*<i>factor</i> + <i>offset</i>) <b>Εντολη</b>εξαρταται απο ειδος εντολης - + Serial Command: ASCII serial command or binary a2b_uu(serial command) Σειριακη Εντολη:ASCII σειριακη εντολη η δυαδικο a2b_uu @@ -4970,47 +4970,47 @@ Continue? Eγγραφη Εντολης Modbus - + DTA Command: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating Εντολη DTA:Χρειζει εισαγωγης τιμων,δεδομενων - + <b>Offset</b> added as offset to the slider value <b>Οφσετ</b>προστεθηκε ως οφσετ στην τιμη του σλαιντερ - + <b>Factor</b> multiplicator of the slider value <b>Παραγων</b>πολλαπλασιαστικο τιμης σλαιντερ - + Event custom buttons Πληκτρα Συμβαντων Χρηστη - + Event configuration saved Διαμορφωση Συμβαντων Αποθυκευτηκε - + Found empty event type box Ευρεθει κενο κουτι τυπου συμβαντων - + <b>Button Label</b> Enter \n to create labels with multiple lines. <b>Επιγραφη Πληκτρου</b>Εισαγετε \n για δημιουργια επιγραφων με πολλαπλες γραμμες. - + <b>Event Description</b> Description of the Event to be recorded. <b>Περιγραφη Συμβαντων</b>Περιγραφει το συμβαν προς καταγραφη. - + <b>Event type</b> Type of event to be recorded. <b>Τυπος Συμβαν</b>Τυπος του συμβαντος προς καταγραφη. @@ -5020,127 +5020,127 @@ Continue? <b>Τιμη Συμβαντος</b>Τιμη του συμβαντος (1-10) προς καταγραφη - + <b>Action</b> Perform an action at the time of the event <b>Ενεργεια</b>Επιλεξτε ενεργεια κατα το συμβαν - + <b>Documentation</b> depends on the action type ('{}' is replaced by the event value): <b>Τεκμηριωση</b>Εξαρταται απο ειδος ενεργειας: - + Call Program: A program/script path (absolute or relative) Aνακληση Προγραμματος:Διαδρομη προγραμματος - + Multiple Event: Adds events of other button numbers separated by a comma: 1,2,3, etc. Πολλαπλα Συμβαντα:Προσθετει συμβαντα η αλλους αριθμους πληκτρων χωρισμενα με κομμα:1,2,3, κλπ. - + <b>Button Visibility</b> Hides/shows individual button <b>Εμφανιση Πληκτρων</b>Εμφανιση/Αποκρυψη μεμονομενων πληκτρων - + <b>Keyboard Shorcut: </b> [b] Hides/shows Extra Button Rows <b>Συντομευση Πληκτρολογιου</b>Εμφανιση/Αποκρυψη Εξτρα Σειρων Πληκτρων - + Phases changed to %1 default: %2 Αλλαγη Φασεων σε %1 προκαθορισμενο: %2 - + Background profile not found Προφιλ Φοντου δεν ευρεθει - + Background does not match number of labels Το Φοντο Δεν ταιριαζει ως προς αριθμο επιγραφων - + Playback Aid set ON at %1 secs Βοηθημα αναπαραγωγης ΕΝΕΡΓΟ στα %1 δευτερολεπτα - + No profile background found Προφιλ Φοντου δεν ευρεθει - + Reading background profile... Αναγνωση προφιλ φοντου... - + Not enough time points for an ET curviness of %1. Set curviness to %2 Μη επαρκη χρονικα σημεια για καμπυλη ΕΤ του %1.Επιλεξτε καμπυλη του %2 - + Designer Config Διαμορφωση Σχεδιαστηριου - + Not enough time points for an BT curviness of %1. Set curviness to %2 Μη επαρκη χρονικα σημεια για καμπυληΒΤ του %1.Επιλεξτε καμπυλη του %2 - + CHARGE ΦΟΡΤΩΜΑ - + DRY END ΛΗΞΗ ΞΥΡΑΝΣΗΣ - + FC START ΕΝΑΡΞΗ FC - + FC END ΛΗΞΗ FC - + SC START ΕΝΑΡΞΗ SC - + SC END ΛΗΞΗ SC - + DROP ΞΕΦΟΡΤΩΜΑ - + Incorrect time format. Please recheck %1 time Μη αποδεκτο χρονικο φορμα.Παρακαλω ελεγξτε %1 χρονο - + Times need to be in ascending order. Please recheck %1 time Χρονοι χρειζουν ανοδικη κατευθυνση.Παρακαλω ελεγξτε %1 χρονο - + Designer has been reset Επαναφορα Σχεδιαστηριου @@ -5195,12 +5195,12 @@ Continue? Λιγες συσκευες κρατουν δεδομενα σε διπλα μητρωα των 4 bytes. - + Tick the Float flag in this case. Κλικαρετε τη σημαια float σε αυτη την περιπτωση. - + Serial Port Settings: %1, %2, %3, %4, %5, %6 Ρυθμισεις Σειριακων Θυρων: %1,%2,%3,%4,%5,%6 @@ -5210,137 +5210,137 @@ Continue? Ανιχνευση θυρας σε αυτη την πλατφορμα δεν υποστηριζεται - + External program Εξωτερικο Προγραμμα - + Device not set Συσκευη δεν καθοριστηκε - + PID to control ET set to %1 %2 ; PID to read BT set to %3 %4 PID για ελεγχο ΕΤ καθοριστηκε σε %1 %2; PID για αναγνωση ΒΤ καθοριστηκε σε %3 %4 - + Device set to %1. Now, check Serial Port settings Συσκευη καθοριστηκε σε %1.Τωρα ελεγξτε ρυθμισεις θυρων - + Device set to %1. Now, chose serial port Συσκευη καθοριστηκε σε %1.Τωρα επιλεξτε θυρα - + Device set to CENTER 305, which is equivalent to CENTER 306. Now, chose serial port Συσκευη καθοριστηκε στο CENTER 305, που ειναι ιδιο με CENTER 306.Τωρα επιλεξτε θυρα - + Device set to %1, which is equivalent to CENTER 309. Now, chose serial port Συσκευη καθοριστηκε στο %1, που ειναι ιδιο με CENTER 309.Τωρα επιλεξτε θυρα - + Device set to %1, which is equivalent to CENTER 303. Now, chose serial port Συσκευη καθοριστηκε στο %1, που ειναι ιδιο με CENTER 303.Τωρα επιλεξτε θυρα - + Device set to %1, which is equivalent to CENTER 306. Now, chose serial port Συσκευη καθοριστηκε στο %1, που ειναι ιδιο με CENTER 306.Τωρα επιλεξτε θυρα - + Device set to %1, which is equivalent to Omega HH506RA. Now, chose serial port Συσκευη καθοριστηκε στο %1, που ειναι ιδιο με Omega HH506RA.Τωρα επιλεξτε θυρα - + Device set to %1, which is equivalent to Omega HH806AU. Now, chose serial port Συσκευη καθοριστηκε στο %1, που ειναι ιδιο με Omega HH806AU.Τωρα επιλεξτε θυρα - + Device set to %1 Συσκευη καθοριστηκε στο %1 - + Device set to %1%2 Συσκευη καθοριστηκε στο %1%2 - + Device set to %1, which is equivalent to CENTER 302. Now, chose serial port Συσκευη καθοριστηκε στο %1, που ειναι ιδιο με CENTER 302.Τωρα επιλεξτε θυρα - + Color of %1 set to %2 Το χρωμα του %1 καθοριστηκε σε %2 - + Save Wheel graph Αποθυκευση Γραφηματος Ροδας - + Wheel Graph saved Γραφημα Ροδας Αποθυκευτηκε - + Load Alarms Φορτωση Συναγερμων - + Save Alarms Αποθυκευση Συναγερμων - + <b>Status:</b> activate or deactive alarm <b>Θεσις</b>Ενεργοποιηση η απενεργοποιηση συναγερμου - + <b>If Alarm:</b> alarm triggered only if the alarm with the given number was triggered before. Use 0 for no guard. <b>Εαν Συναγερμος</b>συναγερμος ανταποκρινεται μονο εαν ο συγκεκριμενος εχει ανταποκριθει πρωτυτερα.Χρηση 0 για μη προφυλαξη. - + <b>From:</b> alarm only triggered after the given event <b>Απο</b>συναγερμος καθοριζεται μετα απο δεδομενο συμβαν - + <b>Time:</b> if not 00:00, alarm is triggered mm:ss after the event 'From' happend <b>Χρονος</b>εαν οχι 00:00,συναγερμος ανταποκρινεταιι λλ:δδ μετα το συμβαν 'Απο' - + <b>Source:</b> the temperature source that is observed <b>Πηγη</b>Παρατηρηση πηγης θερμοκρασιας - + <b>Condition:</b> alarm is triggered if source rises above or below the specified temperature <b>Κατασταση</b>συναγερμος ανταποκριναταιι εαν η πηγη ειναι πανω η κατω απο ειδικη θερμοκρασια - + <b>Temp:</b> the speficied temperature limit <b>Θερμοκρασια</b>Προκαθορισμενο οριο θερμοκρασιας - + <b>Action:</b> if all conditions are fulfilled the alarm triggeres the corresponding action <b>Ενεργεια</b>Εαν εχουν επιτευχθει ολα τα ζητουμενα οι συναγερμοι ανταποκρινονται σε δεδομενη θερμοκρασια @@ -5350,85 +5350,85 @@ Continue? <b>Περιγραφη</b>κειμενο.ονομα προγραμματος,αριθμος πληκτρου συμβαντος η νεα τιμη σλαιντερ - + <b>NOTE:</b> each alarm is only triggered once <b>ΣΗΜΕΙΩΣΗ</b>καθε συναγερμος ανταποκρινεται απαξ - + OFF ΑΝΕΝΕΡΓΟ - + CONTINUOUS CONTROL ΣΥΝΕΧΗΣ ΕΛΕΓΧΟΣ - + ON ΕΝΕΡΓΟ - + STANDBY MODE ΚΑΤΑΣΤΑΣΗ STANDBY - + The rampsoak-mode tells how to start and end the ramp/soak Θεση γραφηματος καθοριζει πως αρχιζει και τελειωνει το γραφημα - + Your rampsoak mode in this pid is: Η κατασταση γραφηματος σε αυτο το pid ειναι: - + Mode = %1 Κατασταση = %1 - + Start to run from PV value: %1 Εναρξη απο τιμη PV: %1 - + End output status at the end of ramp/soak: %1 Τελος θεσης εξοδου στη ληξη ραμπας: %1 - + Output status while ramp/soak operation set to OFF: %1 Θεση εξοδου οταν λειτουργια ραμπασ εχει καθοριστει ΑΝΕΝΕΡΓΗ: %1 - + Repeat Operation at the end: %1 Επαναληψη Λειτουργιας στη ληξη:%1 - + Recomended Mode = 0 Συνιστωμενι θεση = 0 - + If you need to change it, change it now and come back later Εαν χριζει αλλαγης,αλλαξτε το τωρα και επανελθετε αργοτερα - + Use the Parameter Loader Software by Fuji if you need to Χρησιμοποιηστε προγραμμα φορτωσης παραμετρων της Fuji - + Continue? Συνεχεια? @@ -5438,52 +5438,52 @@ Repeat Operation at the end: %1 Θεση Ραμπας - + Current sv = %1. Change now to sv = %2? Τρεχων sv = %1.Αλλαξτε τωρα σε sv = %2? - + Change svN Αλλαξτε svN - + Current pid = %1. Change now to pid =%2? Τρεχων pid = %1.Αλλαξτε τωρα σε pid = %2? - + Ramp Soak start-end mode Θεση εναρξης-Ληξης ραμπας - + Pattern changed to %1 Προτυπο αλλαχτηκε σε %1 - + Pattern did not changed Προτυπο δεν αλλαξε - + Ramp/Soak was found ON! Turn it off before changing the pattern Ενεργη Ραμπα!Απενεργοποιηστε πριν την αλλαγη προτυπου - + Ramp/Soak was found in Hold! Turn it off before changing the pattern Ραμπα σε αναμονη!Απενεργοποιηστε πριν την αλλαγη προτυπου - + Activate PID front buttons Ενεργοποιηστε εμπροσθια πληκτρα PID - + Remember SV memory has a finite life of ~10,000 writes. @@ -5491,52 +5491,52 @@ Proceed? Θυμηθειτε οτι η μνημη SV εχει διαρκεια ~10,000 εγγραφες.Συνεχεια? - + RS ON RS ΕΝΕΡΓΟ - + RS OFF RS ΑΝΕΝΕΡΓΟ - + RS on HOLD RS σε ΑΝΑΜΟΝΗ - + PXG sv#%1 set to %2 PXG sv#%1 καθοριστηκε σε %2 - + PXR sv set to %1 PXR sv καθοριστηκε σε %1 - + SV%1 changed from %2 to %3) SV%1 αλλαξε απο %2 σε %3) - + Unable to set sv%1 Αδυνατος καθορισμος sv%1 - + SV changed from %1 to %2 SV αλλαξε απο %1 σε %2 - + Unable to set sv Aδυνατος καθορισμος sv - + Unable to set new sv Aδυνατος καθορισμος νεου sv @@ -5546,7 +5546,7 @@ Proceed? - + Save Graph as PDF Αποθυκευση Γραφικου ως PDF @@ -5592,72 +5592,72 @@ Continue? - + current background ET - + current background BT - + Phidget Temperature Sensor 4-input attached - + Phidget Bridge 4-input attached - + Phidget 1018 IO attached - + Device set to %1. Now, chose Modbus serial port - + <b>But Not:</b> alarm triggered only if the alarm with the given number was not triggered before. Use 0 for no guard. - + <b>Description:</b> the text of the popup, the name of the program, the number of the event button or the new value of the slider - + Load PID Settings - + Save PID Settings - + Load Ramp/Soak Table - + Save Ramp/Soak Table - + PID turned on - + PID turned off @@ -5667,72 +5667,72 @@ Continue? - + Return the minimum of x and y. - + Return the maximum of x and y. - + The MODBUS device corresponds to input channels - + 1 and 2.. The MODBUS_34 extra device adds - + input channels 3 and 4. Inputs with slave - + id set to 0 are turned off. Modbus function 3 - + 'read holding register' is the standard. - + Modbus function 4 triggers the use of 'read - + 2 byte integer registers. A temperature of 145.2C - + is often sent as 1452. In that case you have to - + use the symbolic assignment 'x/10'. Few devices - + hold data as 4 byte floats in two registers. - + Yocto Thermocouple attached - + Yocto PT100 attached @@ -5742,92 +5742,92 @@ Continue? - + Phidget Temperature Sensor IR attached - + input register'. Input registers (fct 4) usually - + are from 30000-39999. Most devices hold data in - + IO Command: set(n,0), set(n,1), toggle(n) to set Phidget IO digital output n - + ET value - + BT value - + Extra #1 T1 value - + Extra #1 T2 value - + Extra #2 T1 value - + Extra #2 T2 value - + Yn holds values sampled in the actual interval if refering to ET/BT or extra channels from devices listed before, otherwise Yn hold values sampled in the previous interval - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) writes values to the registers in slaves specified by the given ids - + <b>Event value</b> Value of event (1-100) to be recorded - + Phidget Temperature Sensor IR detached - + Phidget Temperature Sensor 4-input detached - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) or wcoils(slaveId,register,&lt;bool&gt;) writes values to the registers in slaves specified by the given ids - + Phidget Bridge 4-input detached - + Phidget 1018 IO detached @@ -5836,21 +5836,16 @@ Continue? Hottop control turned off - - - Hottop control turned on - - Radio Button - + Meter Μετρητης - + PID PID @@ -5860,12 +5855,12 @@ Continue? Arduino TC4 - + Program Προγραμμα - + TC4 @@ -5964,337 +5959,337 @@ Continue? StatusBar - + Playback Aid set OFF - + Ready - + Decimal position successfully set to 1 - + Problem setting decimal position - + Problem setting thermocouple type - + setting autotune... - + Autotune successfully turned OFF - + Autotune successfully turned ON - + wait... - + PID OFF - + PID ON - + SV successfully set to %1 - + Empty SV box - + Unable to read SV - + Ramp/Soak operation cancelled - + No RX data - + RS ON - + Need to change pattern mode... - + Pattern has been changed. Wait 5 secs. - + Pattern could not be changed - + RampSoak could not be changed - + RS OFF - + RS successfully turned OFF - + setONOFFrampsoak(): Ramp Soak could not be set OFF - + getsegment(): problem reading ramp - + getsegment(): problem reading soak - + Finished reading Ramp/Soak val. - + Finished reading pid values - + setpid(): There was a problem setting %1 - + Ramp/Soak successfully written - + Time Units successfully set to MM:SS - + Problem setting time units - + Thermocouple type successfully set - + SV%1 set to %2 - + Problem setting SV - + Cancelled svN change - + PID already using sv%1 - + setNsv(): bad response - + setNpid(): bad confirmation - + Cancelled pid change - + PID was already using pid %1 - + setNpid(): Unable to set pid %1 - + SV%1 successfully set to %2 - + setsv(): Unable to set SV - + pid #%1 successfully set to (%2,%3,%4) - + pid command failed. Bad data at pid%1 (8,8,8): (%2,%3,%4) - + getallpid(): Unable to read pid values - + PID is using pid = %1 - + getallpid(): Unable to read current sv - + PID is using SV = %1 - + Ramp Soak could not be set OFF - + PID set to OFF - + PID set to ON - + Unable - + No data received - + Reading Ramp/Soak %1 ... - + problem reading Ramp/Soak - + Current pid = %1. Proceed with autotune command? - + Autotune cancelled - + UNABLE to set Autotune - + SV - + Ramp (MM:SS) - + Soak (MM:SS) - + Work in Progress - + sending commands for p%1 i%2 d%3 - + %1 successfully sent to pid - + pid changed to %1 @@ -6302,157 +6297,157 @@ Continue? Tab - + HUD ΠΡΟΒΟΛΕΑΣ - + Plotter ΠΛΟΤΕΡ - + Math Μαθηματικα - + UI UI - + General Γενικα - + Notes Σημειωσεις - + Events Συμβαντα - + Data Πληροφορια - + Config Διαμορφωση - + Buttons Πληκτρα - + Sliders Σλαιντερς - + Palettes Προτυπα - + Style Στυλ - + ET/BT ΕΤ/ΒΤ - + Extra Εξτρα - + Modbus Modbus - + Scale Κλιμακα - + Extra Devices Εξτρα Συσκαυες - + Symb ET/BT Συμβ ΕΤ/ΒΤ - + Graph Γραφημα - + LCDs LCDς - + RS RS - + SV SV - + PID PID - + Set RS Δημ RS - + Quantifiers - + Color Χρωμα - + Ramp/Soak - + Phidgets - + Filter - + Espresso @@ -6470,12 +6465,12 @@ Continue? Χρονος Rel - + ET ET - + BT BT @@ -6530,242 +6525,242 @@ Continue? %1 ΣΥΜΒΑΝ #%2 %3%4 - + Time Χρονος - + Description Περιγραφη - + Type Τυπος - + Value Τιμη - + Label Επιγραφη - + Action Ενεργεια - + Documentation Τεκμηριωση - + Visibility Ορατοτητα - + Color Χρωμα - + Text Color Χρωμα Κειμενου - + Device Συσκευη - + Comm Port Θυρα Επικοινωνιας - + Baud Rate Τιμη Baud - + Byte Size Mεγεθος Byte - + Parity Ισοτιμια - + Stopbits Stopbits - + Timeout Χρονικη Ληξη - + Color 1 Χρωμα1 - + Color 2 Χρωμα2 - + Label 1 Επιγραφη1 - + Label 2 Επιγραφη2 - + y1(x) y1(x) - + y2(x) y2(x) - + LCD 1 LCD1 - + LCD 2 LCD2 - + Curve 1 Καμπυλη1 - + Curve 2 Καμπυλη2 - + Parent Γονικος - + Width Πλατος - + Opaqueness Διαφανεια - + Delete Wheel Διαγραφη Ροδας - + Edit Labels Επεξεργασια Επιγραφων - + Update Labels Ενημερωση Επιγραφων - + Properties Ιδιοτητες - + Radius Ακτινα - + Starting angle Γωνια Εναρξης - + Projection Προβολη - + Text Size Μεγεθος Κειμενου - + Color Pattern Προτυπο Χρωματων - + Status Θεση - + If Alarm Εαν συναγερμος - + From Απο - + Source Πηγη - + Condition Κατασταση - + Temp Θερμοκρασια - + SV SV - + Ramp HH:MM Γραφημα Ramp ΩΩ:ΛΛ - + Soak HH:MM Γραφημα Soak ΩΩ:ΛΛ @@ -6775,85 +6770,90 @@ Continue? ΕΝΑΡΞΗ - + DRY END ΛΗΞΗ ΞΥΡΑΝΣΗΣ - + FC START ΕΝΑΡΞΗ FC - + FC END ΛΗΞΗ FC - + SC START ΕΝΑΡΞΗ SC - + SC END ΛΗΞΗ SC - + COOL ΨΥΞΗ - + EVENT #%2 %3%4 ΣΥΜΒΑΝ #%2 %3%4 - + DROP ΞΕΦΟΡΤΩΜΑ - + DeltaET DeltaET - + DeltaBT DeltaBT - + CHARGE ΦΟΡΤΩΜΑ - + EVENT #%1 %2%3 - + But Not - + Beep Beep - + Name - + Weight Βαρος + + + Nr + + Textbox @@ -7226,204 +7226,204 @@ Pungency Ενημερωνει συμβαντα - + <b>Label</b>= - + <b>Description </b>= <b>Περιγραφη </b>= - + <b>Type </b>= - + <b>Value </b>= - + <b>Documentation </b>= - + <b>Button# </b>= - + Save image using current graph size to a png format Αποθυκευση φραφηματος σε μορφη png - + linear: linear interpolation cubic: 3rd order spline interpolation nearest: y value of the nearest point - + ON/OFF logs serial communication - + Automatic generated name = This text + date + time - + ON/OFF of automatic saving when pressing keyboard letter [a] - + Sets the directory to store batch profiles when using the letter [a] - + Allows to enter a description of the last event Επιτρεπει εισαγωγη περιγραφης τελευταιου συμβαντος - + Add new extra Event button Προσθηκη νεου πληκτρου συμβαντος - + Delete the last extra Event button Διαγραφη τελευταιου πληκτρου συμβαντος - + Show help Εμφανιση βοηθειας - + Backup all palettes to a text file Backup ολων προτυπων σε μορφη κειμενου - + Action Type Τυπος ενεργειας - + Action String - + Aspect Ratio Αναλογια - + Example: 100 + 2*x - + Example: 100 + x - + Erases wheel parent hierarchy Διαγραφη ιεραρχιας ροδας - + Sets graph hierarchy child->parent instead of parent->child - + Increase size of text in all the graph Αυξανει μεγεθος κειμενων γραφηματων - + Decrease size of text in all the graph Μειωνει μεγεθος κειμενων γραφηματων - + Decorative edge beween wheels - + Line thickness Παχος γραμμης - + Line color Χρωμα γραμμης - + Apply color pattern to whole graph Εφαρμογη προτυπυ χρωματων το γραφημα - + Add new wheel Προσθηκη ροδας - + Rotate graph 1 degree counter clockwise Περιστροφη γραφηματος δεξιοστροφα - + Rotate graph 1 degree clockwise Περιστροφη γραφηματος αριστεροστροφα - + Save graph to a text file.wg Αποθυκευση γραφηματος σε μορφη κειμενου.wg - + Sets Wheel graph to view mode - + open graph file.wg Ανοιγμα γραφηματος απο wg - + Close wheel graph editor Κλεισιμο διαμορφωσης ροδας - + Restore all palettes from a text file Επαναφορα προτυπων απο κειμενο - + Clear alarms table - + Interval diff --git a/translations/artisan_es.ts b/translations/artisan_es.ts index 34b0b8701..af6d561b3 100644 --- a/translations/artisan_es.ts +++ b/translations/artisan_es.ts @@ -26,82 +26,82 @@ Button - + Update Actualizar - + OK OK - + Cancel Cancelar - + Info Info - + Add Añadir - + Delete Borrar - + Path Camino - + Defaults Predeterminados - + Save Img Guard. Imag - + Load Cargar - + Align Alinear - + Plot Trazar - + Help Ayuda - + Reset Reiniciar - + Close Cerrar - + Create Crear @@ -111,282 +111,282 @@ Buscar Puertos - + Background Fondo - + Grid Cuadrícula - + Title Título - + Y Label Etiqueta Y - + X Label Etiqueta X - + ET ET - + BT BT - + DeltaET DeltaET - + DeltaBT DeltaBT - + Markers Marcadores - + Text Texto - + Watermarks Filigranas - + C Lines Lineas C - + Grey Gris - + LED LED - + B/W B/N - + Reset Parents Reinicializar padres - + Reverse Hierarchy Invertir Jerarquia - + + + - + - - - + Line Color Color de Linea - + < < - + > > - + Save File Guardar Fichero - + Open Abrir - + Set Color Ajustar Color - + Read Ra/So values Leer valores Ra/So - + RampSoak ON RampSoak ON - + RampSoak OFF RampSoak OFF - + PID OFF PID OFF - + PID ON PID ON - + Write SV Escribir SV - + Set p Ajustar p - + Set i Ajustar i - + Set d Ajustar d - + Autotune ON AutoAjuste ON - + Autotune OFF AutoAjuste OFF - + Set Ajustar - + Read RS values Leer valores RS - + Write SV1 Escribir SV1 - + Write SV2 Escribir SV2 - + Write SV3 Escribir SV3 - + Write SV4 Escribir SV4 - + Write SV5 Escribir SV5 - + Write SV6 Escribir SV6 - + Write SV7 Escribir SV7 - + ON SV buttons Botones SV ON - + OFF SV buttons Botones SV OFF - + Read SV (7-0) Leer SV(7-0) - + pid 1 pid 1 - + pid 2 pid 2 - + pid 3 pid 3 - + pid 4 pid 4 - + pid 5 pid 5 - + pid 6 pid 6 - + pid 7 pid 7 @@ -396,62 +396,62 @@ Leer Todos - + All On Todos ON - + All Off Todos OFF - + Read Leer - + Set ET PID to 1 decimal point Ajustar ET PID a 1 décima - + Set BT PID to 1 decimal point Ajustar BT PID a 1 décima - + Set ET PID to MM:SS time units Ajustar ET PID a MM:SS unidades de tiempo - + Del Borrar - + Save Image Guaradar Imagen - + Up Arriba - + Down Abajo - + Left Izquierda - + Right Derecha @@ -461,42 +461,42 @@ PID Ayuda - + View Mode Ver Modo - + Select Seleccionar - + Search Buscar - + Virtual Device Dispositivo Virtual - + Order Ordenar - + in dentro - + out fuera - + Save Guardar @@ -627,127 +627,127 @@ END Restablecer desde - + SV Buttons ON Botones SV ON - + SV Buttons OFF Botones SV OFF - + Read SV Leer SV - + Read PID Values Leer valores PID - + Write Escribir - + Drying Phase Fase de Secado - + Maillard Phase Fase de Maillard - + Development Phase Fase de Desarrollo - + Cooling Phase Fase de Enfriado - + Color Color - + Insert - + Clear - + scan - + Write All - + Write RS values - + Write SV (7-0) - + Read PIDs - + Write PIDs - + Apply - + On - + Off - + calc - + unit - + << - + >> @@ -755,107 +755,107 @@ END CheckBox - + DeltaET DeltaET - + DeltaBT DeltaBT - + Projection Proyeccion - + Beep Pitido - + Auto Adjusted Auto Ajustado - + Show Mostrar - + Text Texto - + Events Eventos - + Time Tiempo - + Bar Barra - + Evaluation Evaluacion - + Characteristics Propiedades - + DRY END FIN SECADO - + FC START INICIO FC - + FC END FIN FC - + SC START INICIO SC - + SC END FIN SC - + ET ET - + Button Boton - + Mini Editor Editor Mini - + Background Fondo @@ -865,7 +865,7 @@ END Auto CARGA/DESCENSO - + Serial Log ON/OFF Registro Serie ON/OFF @@ -875,207 +875,207 @@ END g/m - + Delete roast properties on RESET Borrar propiedades de tueste en REINICIO - + Autosave [a] Autograbar [s] - + CHARGE CARGAR - + DROP DESCENDER - + COOL END FIN ENFRIADO - + ETBTa - + BT BT - + Playback Aid Ayuda Reproduccion - + Heavy FC FC Fuerte - + Low FC FC Débil - + Light Cut Corte Ligero - + Dark Cut Corte Oscuro - + Drops Descensos - + Oily Aceitoso - + Uneven Irregular - + Tipping Crítico - + Scorching Abrasador - + Divots Chuletas - + Drop Spikes Picos Descenso - + Smooth Spikes Alisar picos - + Limits Límites - + Watermarks Filigranas - + Lock Max Max Cierre - + Load alarms from profile - + Auto CHARGE - + Auto DROP - + Mark TP - + Phases LCDs - + Auto DRY - + Auto FCs - + Decimal Places - + Modbus Port - + Smooth2 - + Start PID on CHARGE - + Load Ramp/Soak table from profile - + Control Button - + Ratiometric - + Align FCs - + /min - + Alarm Popups - + Lock @@ -1083,7 +1083,7 @@ END ComboBox - + None Ninguno @@ -1103,252 +1103,252 @@ END Ventilador - + linear Lineal - + newton Newton - + metrics Métrico - + thermal Térmico - + cubic cúbico - + nearest más cercano - + g g - + Kg Kg - + ml ml - + l l - + upper right arriba derecha - + upper left arriba izquierda - + lower left abajo izquierda - + lower right abajo derecha - + right derecha - + center left centro izquierda - + center right centro derecha - + lower center abajo centro - + upper center arriba centro - + center centro - + Event #0 Evento:#0 - + Event #%1 Evento #%1 - + lb lb - + liter litro - + gallon galón - + quart cuarto - + pint pinta - + cup taza - + cm^3 cm^3 - + Multiple Event Evento multiple - + grey gris - + Dark Grey Gris Oscuro - + Slate Grey Gris Pizarra - + Light Gray Gris Claro - + Black Negro - + White Blanco - + Transparent Trasparente - + Flat Llano - + Perpendicular Perpendicular - + Radial Radial - + CHARGE CARGA - + DRY END FIN SECADO - + FC START INICIO FC - + FC END FIN FC - + SC START INICIO SC - + DROP DESCENDER - + OFF OFF - + ON ON - + ET ET - + BT BT @@ -1358,142 +1358,142 @@ END 30 segundos - + 1 minute 1 minuto - + 2 minute 2 minutos - + 3 minute 3 minutos - + 4 minute 4 minutos - + 5 minute 5 minutos - + solid sólido - + dashed Rayado - + dashed-dot Rayado.punto - + dotted punteado - + Type Tipo - + Value Valor - + DeltaET DeltaET - + DeltaBT DeltaBT - + SC END FIN SC - + Serial Command Comando Serie - + Modbus Command Comando Modbus - + DTA Command Comando DTA - + Call Program Llamar Programa - + START INICIO - + TP TP - + COOL ENFRIAR - + Event Button Botón Evento - + Slider Deslizador - + below debajo - + above encima - + Pop Up Salto - + SV Commands Comandos SV - + Ramp Commands Comandos Rampa @@ -1503,82 +1503,82 @@ END Velocidad - + little-endian pequeño-endian - + classic - + xkcd - + Default Predeterminado - + Humor - + Comic - + DRY - + FCs - + FCe - + SCs - + SCe - + COOL END FIN ENFRIADO - + IO Command - + Hottop Heater - + Hottop Fan - + Hottop Command @@ -1644,12 +1644,12 @@ END Directory - + profiles perfiles - + other otros @@ -1667,42 +1667,42 @@ END HH806AUtemperature(): %1 bytes recibidos pero se necesitan 14 - + HH506RAtemperature(): Unable to get id from HH506RA device HH506RAtemperature():No se pudo conseguir la identificacion del dispositivo HH506RA - + HH506RAtemperature(): %1 bytes received but 14 needed HH506RAtemperature(): %1 bytes recibidos pero se necesitan 14 - + HH506RAGetID: %1 bytes received but 5 needed HH506RAGetID: %1 recibidos pero se necesitan 5 - + Segment values could not be written into PID Valores de segmentos no se pudieron grabar en la PID - + RampSoak could not be changed RampSoak no se pudo cambiar - + pid.readoneword(): %1 RX bytes received (7 needed) for unit ID=%2 pid.readoneword(): %1 RX bytesrecibidos pero se necesitan 7 en Unidad ID=%2 - + Unable to move CHARGE to a value that does not exist No se pudo mover CHARGE a un valor que no existe - + HH806Wtemperature(): Unable to initiate device @@ -1717,112 +1717,112 @@ END Error dispositivo - + Value Error: Exception Valor: - + Exception: Error: - + IO Error: - + Modbus Error: - + Serial Exception: Exception Serial: - + F80h Error - + CRC16 data corruption ERROR. TX does not match RX. Check wiring CRC16 data corrupcion ERROR. TX no coincide con RX. Comprueba los cables de conexion - + No RX data received No RX data recibida - + Unable to open serial port Puerta serial no se pudo abrir - + CENTER303temperature(): %1 bytes received but 8 needed CENTER303temperature(): %1 bytes recibidos pero se necesitan 8 - + CENTER306temperature(): %1 bytes received but 10 needed CENTER306temperature(): %1 bytes recibidos pero se necesitan 10 - + DTAcommand(): %1 bytes received but 15 needed DTAtemperature(): %1 bytes recibidos pero se necesitan 15 - + CENTER309temperature(): %1 bytes received but 45 needed CENTER309temperature(): %1 bytes recibidos pero se necesitan 45 - + Arduino could not set channels Ardunino no pudo cambiar canales - + Arduino could not set temperature unit Arduino no pudo cambiar temperatura - + CENTER302temperature(): %1 bytes received but 7 needed CENTER302temperature(): %1 bytes recibidos pero se necesitan 7 - + Serial Exception: invalid comm port Exception Serial: Comm nombre invalido - + Serial Exception: timeout Exception Serial: tiempo de espera - + Univariate: no profile data available Univariate: no data de perfil disponible - + Polyfit: no profile data available Polyfit: no data de perfil disponible - + MS6514temperature(): %1 bytes received but 16 needed - + HH806AUtemperature(): %1 bytes received but 16 needed HH806AUtemperature(): %1 bytes recibidos pero se necesitan 14 {806A?} {1 ?} {16 ?} @@ -1832,7 +1832,7 @@ END - + Arduino could not set filters @@ -1893,147 +1893,147 @@ END Form Caption - + Extras Extras - + Roast Properties Propiedades del Tostado - + Error Log Historial de errores - + Message History Historial de mensajes - + AutoSave Path Camino Auto-Guardar - + Roast Calculator Calculadora del Tostado - + Events Eventos - + Roast Phases Fases del Tostado - + Cup Profile Perfil de la taza - + Profile Background Perfil de fondo - + Statistics Estadisticas - + Designer Config Config del Diseñador - + Manual Temperature Logger Grabadora manual de Temperaturas - + Serial Ports Configuration Configuracion Puertos Serie - + Device Assignment Asignacion de dispositivos - + Colors Colores - + Wheel Graph Editor Editor de Graficos de Rueda - + Alarms Alarmas - + Fuji PXG PID Control Fuji PXG PID Control - + Axes Ejes - + Delta DTA PID Control Control Delta DTA PID - + Serial Log Historial Puertos Serie - + Artisan Platform Plataforma Artisan - + Keyboard Autosave [a] Auto-Guardar Teclado [a] - + Settings Viewer Visualizador de Configuración - + Fuji PXR PID Control Fuji PXR PID Control - + Arduino Control - + Volume Calculator - + Tare Setup @@ -2041,247 +2041,247 @@ END GroupBox - + Curves Curvas - + HUD HUD - + Interpolate Interpolar - + Univariate Univariable - + Times Tiempos - + Legend Location Colocación Leyenda - + Rate of Change Tasa de Cambio - + Temperature Conversion Conversión Temperatura - + Weight Conversion Conversión Peso - + Volume Conversion Conversión Volumen - + Event Types Tipos de Eventos - + Evaluation Evaluación - + Display Monitor - + PID PID - + Timer LCD LCD Cronómetro - + ET LCD LCD ET - + BT LCD LCD BT - + Label Properties Propiedades etiquetas - + Time Axis Eje Tiempo - + Temperature Axis Eje Temperatura - + Grid Cuadrícula - + Arduino TC4 Arduino TC4 - + Symbolic Assignments Asignaciones simbólicas - + External Program Programa externo - + Initial Settings Ajustes iniciales - + LCDs LCDs - + Appearance Apariencia - + Resolution Resolución - + DeltaBT/DeltaET Axis Eje DeltaBT/DeltaET - + Default Buttons Botones por Defecto - + Management Gestión - + Input 1 Entrada 1 - + Input 2 Entrada 2 - + Input 3 Entrada 3 - + Input 4 Entrada 4 - + Sound Sonido - + DeltaET LCD LCD ET - + DeltaBT LCD LCD DeltaBT - + Input Filters Filtros de Entrada - + Extra Devices / PID SV LCD Dispositivos extras / PID SV LCD - + Polyfit - + Look - + Network - + p-i-d - + Set Value - + Phidget IO - + Phidgets 1045 - + Phidgets 1046 RTD - + WebLCDs @@ -2291,12 +2291,12 @@ END Intervalo de Muestreo - + Phidgets 1048/1051 - + Sampling @@ -2487,12 +2487,12 @@ END Label - + ET ET - + BT BT @@ -2517,152 +2517,152 @@ END Evento #<b>0 </b> - + City City - + City+ City+ - + Full City Full City - + Full City+ Full City+ - + Light French Light French - + French French - + Mode Modo - + CHARGE CARGA - + DRY END FIN SECADO - + FC START INICIO FC - + FC END FIN FC - + SC START INICIO SC - + SC END FIN SC - + DROP DESCENDER - + Title Titulo - + Date Fecha - + Beans Granos - + Weight Peso - + in dentro - + out fuera - + % % - + Volume Volumen - + Density Densidad - + per per - + % % - + at a - + Roaster Tostador - + Operator Operador - + Roasting Notes Notas del tostado - + Cupping Notes Notas de Catación @@ -2672,147 +2672,147 @@ END Densidad entrante: %1 g/l => Densidad saliente: %2 g/l - + (%1 g/l) (%1 g/l) - + Max Max - + Min Min - + Enter two times along profile Pon dos tiempos en el perfil - + Start (00:00) Inicio (00:00) - + End (00:00) Fin (00:00) - + Fahrenheit Fahrenheit - + Celsius Celsius - + Opaqueness Opacidad - + BT Color Color BT - + Curviness Curvedad - + Events Playback Reproduccion Eventos - + Comm Port Puerto Comm - + Baud Rate Flujo Baudios - + Byte Size Tamaño Byte - + Parity Paridad - + Stopbits Stopbits - + Timeout Tiempo muerto - + Control ET Control ET - + Type Tipo - + Read BT Leer BT - + SV SV - + Ramp/Soak Pattern Ramp/Soak modelo - + Pattern Modelo - + SV (7-0) SV (7-0) - + Write Escribir - + P P - + I I - + D D @@ -2822,57 +2822,57 @@ END Evento #<b>%1 </b> - + Number of errors found %1 Numero de errores %1 - + WARNING ALERTA - + Writing eeprom memory Grabando en memoria EEPROM - + <u>Max life</u> 10,000 writes <u>Vida Max </u> 10,000 Grabaciones - + Infinite read life. Vida de lectura infinita. - + After <u>writing</u> an adjustment,<br>never power down the pid<br>for the next 5 seconds <br>or the pid may never recover. Despues de <u>hacer</u> un ajuste,<br>nunca desconectes el pid<br>durante los siguientes 5 segundos <br>o la pid no funcionara. - + Read operations manual Leer manual de operacion - + Time syntax error. Time not valid Error de tiempo. Tiempo inválido - + Error: End time smaller than Start time Error: Tiempo final inferior a inicial - + Best approximation was made from %1 to %2 Mejor aproximacion hecha desde %1 a %2 - + No profile found Perfil no encontrado @@ -2882,307 +2882,307 @@ END PID % - + ET Y(x) ET Y(x) - + BT Y(x) BT Y(x) - + Text Texto - + Edge Borde - + Line Linea - + Color pattern Muestra de Color - + Ramp Soak HH:MM<br>(1-4) Ramp Soak HH:MM<br>(1-4) - + Ramp Soak HH:MM<br>(5-8) Ramp Soak HH:MM<br>(5-8) - + Ramp Soak (MM:SS)<br>(1-7) Ramp Soak (MM:SS)<br>(1-7) - + Ramp Soak (MM:SS)<br>(8-16) Ramp Soak (MM:SS)<br>(8-16) - + Rotation Rotación - + Step Paso - + Style Estilo - + Width Grosor - + ET Thermocouple type ET tipo de Termopar - + BT Thermocouple type BT tipo de Termopar - + Artisan uses 1 decimal point Artisan usa 1 punto decimal - + Artisan Fuji PXG uses MINUTES:SECONDS units in Ramp/Soaks Artisan Fuji PXG usa unidades MINUTOS:SEGUNDOS en Ramp/Soaks - + Y(x) Y(x) - + Default Predeterminado - + ET Color Color ET - + ET Channel Canal ET - + BT Channel Canal BT - + RS485 Unit ID ID Unidad RS485 - + Aspect Ratio Relación de Aspecto - + Ratio Proporción - + Max buttons per row Botones max por fila - + Color Pattern Muestra de Color - + palette # paleta # - + Marker Marcador - + Time Tiempo - + Device Dispositivo - + COOL ENFRIAR - + Bean Size Tamaño del grano - + mm mm - + Event Evento - + Action Accion - + Command Comando - + Offset Offset - + Factor Factor - + Slave Esclavo - + Register Registrar - + AT Channel Canal AT - + DeltaET Color Color DeltaET - + DeltaBT Color Color DeltaBT - + Text Warning Alerta de Texto - + sec sec - + Moisture Greens Condiciones de almacenaje - + Ambient Conditions Condiciones Ambientales - + Ambient Source Fuente Ambiental - + Color Color - + Thickness Grosor - + Opacity Opacidad - + Size Tamaño - + Bars Barras - + Smooth Deltas Alisar Deltas - + Smooth Curves Alisar Curvas - + Whole Color Color Entero - + Ground Color Color del poso - + Float Flotar - + Function Función @@ -3232,7 +3232,7 @@ END %1 para alcanzar objetivo ET %2 - + at %1 a %1 @@ -3242,92 +3242,92 @@ END %1 para alcanzar objetivo BT %2 - + ET - BT = %1 ET - BT = %1 - + ET - BT = %1%2 ET - BT = %1%2 - + dg gd - + Enter description Entrar descripcion - + NOTE: BT Thermocouple type is not stored in the Artisan settings NOTA: EL tipo de termopar BT no se encuentra en la configuracion de Artisan - + %1 after FCs %1 tras FCi - + %1 after FCe %1 tras FCf - + ET Target 1 ET meta 1 - + BT Target 1 BT meta 1 - + ET Target 2 ET meta 2 - + BT Target 2 BT meta 2 - + ET p-i-d 1 - + min min - + max max - + Drying Secando - + Maillard Maillard - + Development Desarrollo - + Cooling Enfriamiento @@ -3337,12 +3337,12 @@ END EVENTO - + Initial Max Max Inicial - + Settings for non-Modbus devices Ajustes para dispositivos no-Modbus @@ -3372,22 +3372,22 @@ END ETBTa - + Start Iniciar - + End Fin - + Path Effects - + Font @@ -3417,12 +3417,12 @@ END Comienza a grabar - + Prefix - + Source Fuente @@ -3432,77 +3432,77 @@ END - + Window - + Cycle - + Lookahead - + Manual - + Ramp/Soak - + Background Fondo - + SV Buttons - + SV Slider - + Coarse - + Host - + Port - + HUD Button - + Raw - + ServerId: - + Password: @@ -3537,12 +3537,12 @@ END - + Moisture Roasted - + Density in: %1 g/l => Density out: %2 g/l @@ -3567,112 +3567,112 @@ END - + <b>%1</b> %2/sec, <b>%3</b> %4/min - + Async - + Change - + Gain - + Rate - + Wiring - + Delta Span - + Unit - + ml ml - + Unit Weight - + g g - + Kg Kg - + l l - + in dentro - + out fuera - + Moisture loss: %1% Organic loss: %2% - + Filter - + Emissivity - + ON ON - + OFF OFF - + %1 to reach ET %2 - + %1 to reach BT %2 @@ -3682,17 +3682,17 @@ END - + XT Color - + XT - + current palette @@ -3738,52 +3738,52 @@ END Marker - + Circle Circulo - + Square Cuadrado - + Pentagon Pentagono - + Diamond Diamante - + Star Estrella - + Hexagon 1 Hexagono 1 - + Hexagon 2 Hexagono 2 - + + + - + x x - + None Ninguno @@ -4410,7 +4410,7 @@ No existe [CARGA] or [DESCAR] en el perfil Nuevo perfil creado - + Open Wheel Graph Abrir Grafica de Rueda @@ -4535,7 +4535,7 @@ No existe [CARGA] or [DESCAR] en el perfil Seleccionar Directorio - + No profile found Perfil no encontrado @@ -4630,307 +4630,307 @@ No existe [CARGA] or [DESCAR] en el perfil Segundos - + Alarm Config Config Alarmas - + Alarms are not available for device None Las alarmas no se pueden utilizar con dispositivo Ninguno - + Switch Language Cambiar Languaje - + Language successfully changed. Restart the application. Leguaje cambiado. Reinicia el programa para que tome efecto. - + Import K202 CSV Importar K202 CSV - + K202 file loaded successfully K202 ficha abierta correctamente - + Import K204 CSV Importar K204 CSV - + K204 file loaded successfully ficha K204 subida - + Import HH506RA CSV Importar HH506RA CSV - + HH506RA file loaded successfully HH506RA ficha abierta correctamente - + Save Graph as PNG - + %1 size(%2,%3) saved %1 tamaño(%2,%3) guardado - + Save Graph as SVG - + %1 saved - + Invalid Wheel graph format Formato de Grafica de Rueda invalido - + Wheel Graph succesfully open Grafica de Rueda abierto - + Return the absolute value of x. Valor absoluto de x. - + Return the arc cosine (measured in radians) of x. Arco coseno de x (en radianes). - + Return the arc sine (measured in radians) of x. Arco seno de x (en radianes). - + Return the arc tangent (measured in radians) of x. Arco tangente de x (en radianes). - + Return the cosine of x (measured in radians). Coseno de x (en radianes). - + Convert angle x from radians to degrees. Convierte angulo x de radianes a grados. - + Return e raised to the power of x. e al exponente x. - + Return the logarithm of x to the given base. Logaritmo de x a la base dada. - + Return the base 10 logarithm of x. logaritmo de x a la base 10. - + Return x**y (x to the power of y). x**y (x al exponente y). - + Convert angle x from degrees to radians. Convertir angulo x de grados a radianes. - + Return the sine of x (measured in radians). seno de x (en radianes). - + Return the square root of x. raiz quadrada de x. - + Return the tangent of x (measured in radians). Tangente de x (en radianes). - + MATHEMATICAL FUNCTIONS FUNCIONES MATEMATICAS - + SYMBOLIC VARIABLES VARIABLES SIMBOLICAS - + Symbolic Functions Funciones simbolicas - + Save Palettes Guardar Paleta - + Palettes saved Paleta guardado - + Invalid palettes file format - + Palettes loaded - + Load Palettes - + Alarms loaded - + Sound turned ON Sonido Encendido - + Sound turned OFF Sonido Apagado - + Event #%1 added Evento #%1 añadido - + Event #%1 deleted Evento #%1 borrado - + No events found Eventos no encontrados - + Roast properties updated but profile not saved to disk Propiedades del tostado actualizadas pero perfil no ha sido grabado - + Autosave ON. Prefix: %1 Autoguardar ON. Prefijo: %1 - + Autosave OFF Autograbar apagado - + xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) - + <b>Event</b> hide or show the corresponding slider - + <b>Action</b> Perform an action on slider release <b>Accion</b> Ejecuta una accion al mismo tiempo que el evento - + <b>Command</b> depends on the action type ('{}' is replaced by <i>value</i>*<i>factor</i> + <i>offset</i>) - + Serial Command: ASCII serial command or binary a2b_uu(serial command) Comando serial: ASCII comando serial o binario a2b_uu(comando serial) - + DTA Command: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating - + <b>Offset</b> added as offset to the slider value - + <b>Factor</b> multiplicator of the slider value - + Event custom buttons Botones Eventos configurables - + Event configuration saved Configuracion de Eventos guardada - + Found empty event type box Caja de tipos de Eventos vacia - + <b>Button Label</b> Enter \n to create labels with multiple lines. <b>Etiqueta Boton </b> Escribe \n para crear lineas multiples. - + <b>Event Description</b> Description of the Event to be recorded. <b>Descripcion Evento </b> La descripcion del evento. - + <b>Event type</b> Type of event to be recorded. <b> Tipo de Evento </b> Tipo de Evento. @@ -4940,107 +4940,107 @@ No existe [CARGA] or [DESCAR] en el perfil <b>Valor de Evento </b> Valor del Evento (1-10) - + <b>Action</b> Perform an action at the time of the event <b>Accion</b> Ejecuta una accion al mismo tiempo que el evento - + <b>Documentation</b> depends on the action type ('{}' is replaced by the event value): - + Call Program: A program/script path (absolute or relative) Llamar programa: Un programa o camino de script (absoluto o relativo) - + Multiple Event: Adds events of other button numbers separated by a comma: 1,2,3, etc. Evento multiple: Añade eventos con el numero de otros botones separados por coma: 1,2,3, etc. - + <b>Button Visibility</b> Hides/shows individual button <b>Visibilidad de botones</b> Muestra/esconde botones - + <b>Keyboard Shorcut: </b> [b] Hides/shows Extra Button Rows <b>Atajo teclado: </b> [b] Muestra/Esconde filas de botones - + Background does not match number of labels Fondo no coincide con numero de etiquetas existentes - + Not enough time points for an ET curviness of %1. Set curviness to %2 Insuficientes puntos de tiempo para curva ET de %1. Cambiado a %2 - + Designer Config Config Diseñador - + Not enough time points for an BT curviness of %1. Set curviness to %2 Insuficientes puntos de tiempo para curva BT de %1. Cambiado a %2 - + CHARGE CARGAR - + DRY END SECO - + FC START FC START - + FC END FC FIN - + SC START SC START - + SC END SC FIN - + DROP DESCAR - + Incorrect time format. Please recheck %1 time Formato de tiempo incorrecto. Corrije %1 - + Times need to be in ascending order. Please recheck %1 time Tiempos necesitan estar en orden ascendente. Corrije %1 - + Designer has been reset Diseñador ha siso reiniciado - + Serial Port Settings: %1, %2, %3, %4, %5, %6 Configuarcion Puero Serial : %1, %2, %3, %4, %5, %6 @@ -5050,199 +5050,199 @@ No existe [CARGA] or [DESCAR] en el perfil Escaneo de Puertos en esta plataforma no existe - + External program Programa externo - + PID to control ET set to %1 %2 ; PID to read BT set to %3 %4 PID control ET puesto a %1 %2 ; PID leer BT puesto a %3 %4 - + Device set to %1. Now, check Serial Port settings Dispositivo seleccionado %1. Ahora elije puerto serial - + Device set to %1. Now, chose serial port Dispositivo puesto a %1. Ahora elije puerto serial - + Device set to CENTER 305, which is equivalent to CENTER 306. Now, chose serial port Dispositivo seleccionado CENTER 305, que es equivalente a CENTER 306. Ahora elije puerto serial - + Device set to %1, which is equivalent to CENTER 309. Now, chose serial port Dispositivo seleccionado %1, que es equivalente a CENTER 309. Ahora elije puerto serial - + Device set to %1, which is equivalent to CENTER 303. Now, chose serial port Dispositivo seleccionado %1, que es equivalente a CENTER 303. Ahora elije puerto serial - + Device set to %1, which is equivalent to CENTER 306. Now, chose serial port Dispositivo seleccionado %1, que es equivalente a CENTER 306. Ahora elije puerto serial - + Device set to %1, which is equivalent to Omega HH506RA. Now, chose serial port Dispositivo seleccionado %1, que es equivalente a Omega HH505RA. Ahora elije puerto serial - + Device set to %1, which is equivalent to Omega HH806AU. Now, chose serial port Dispositivo seleccionado %1, que es equivalente a Omega HH806AU. Ahora elije puerto serial - + Device set to %1 Dispositivo seleccionado %1 - + Device set to %1%2 Dispositivo seleccionado %1%2 - + Device set to %1, which is equivalent to CENTER 302. Now, chose serial port Dispositivo seleccionado %1, que es equivalente a CENTER 306. Ahora elije puerto serial {1,?} {302.?} - + Color of %1 set to %2 Color de %1 cambiado a %2 - + Save Wheel graph Guardar Grafica de Rueda - + Wheel Graph saved Grafica de Rueda guardada - + Load Alarms - + Save Alarms - + <b>Status:</b> activate or deactive alarm - + <b>If Alarm:</b> alarm triggered only if the alarm with the given number was triggered before. Use 0 for no guard. - + <b>From:</b> alarm only triggered after the given event - + <b>Time:</b> if not 00:00, alarm is triggered mm:ss after the event 'From' happend - + <b>Source:</b> the temperature source that is observed - + <b>Condition:</b> alarm is triggered if source rises above or below the specified temperature - + <b>Action:</b> if all conditions are fulfilled the alarm triggeres the corresponding action - + <b>NOTE:</b> each alarm is only triggered once - + OFF OFF - + CONTINUOUS CONTROL CONTROL CONTINUADO - + ON ON - + STANDBY MODE MODE DESCANSO - + The rampsoak-mode tells how to start and end the ramp/soak EL modo RampSoak describe como encender y apagar el RampSoak - + Your rampsoak mode in this pid is: Tu modo RampSoak en esta pid es: - + Mode = %1 Modo= %1 - + Start to run from PV value: %1 Comienza desde valor de PV: %1 - + End output status at the end of ramp/soak: %1 Estado de final en RampSoak: %1 - + Repeat Operation at the end: %1 Repite operacion al final: %1 - + Recomended Mode = 0 Modo recomendad0 = 0 - + If you need to change it, change it now and come back later Si ncesitas cambiarlo, cambialo ahora y regresa - + Use the Parameter Loader Software by Fuji if you need to @@ -5251,7 +5251,7 @@ Repite operacion al final: %1 - + Continue? Continuar? @@ -5261,52 +5261,52 @@ Repite operacion al final: %1 Ramp/Soak Modo - + Current sv = %1. Change now to sv = %2? SV actual = %1. Cambiar a SV=%2? - + Change svN Cambiar svN - + Current pid = %1. Change now to pid =%2? PID actual = %1. Cambiar a PID = %2? - + Ramp Soak start-end mode Ramp Soak modo de inicio - + Pattern changed to %1 Modo cambiado a %1 - + Pattern did not changed Modo no cambio - + Ramp/Soak was found ON! Turn it off before changing the pattern Ramp/Soak encontrado Encendido. Se necesita apagar para cambiar el modo - + Ramp/Soak was found in Hold! Turn it off before changing the pattern Ramp/Soak encontrado en espera. Apagalo antes de cambiar el modo - + Activate PID front buttons Activar botones PID - + Remember SV memory has a finite life of ~10,000 writes. @@ -5317,42 +5317,42 @@ vida limitada de 10,000 escrituras Continuar? - + RS OFF RS Apagado - + RS on HOLD RS en espera - + PXG sv#%1 set to %2 PXG sv#%1 cambiado a %2 - + PXR sv set to %1 PXR sv cambiado a %1 - + SV%1 changed from %2 to %3) SV%1 cambiado de %2 a %3 - + Unable to set sv%1 No se pudo cambiar sv %1 - + Unable to set sv No se pudo cambiar SV - + Unable to set new sv No se pudo escribir SV nuevo @@ -5372,7 +5372,7 @@ Continuar? Paleta de botones de eventos extra - + <b>Temp:</b> the speficied temperature limit @@ -5382,32 +5382,32 @@ Continuar? - + Interpolation failed: no profile available - + Playback Aid set ON at %1 secs Ayuda de reproduccion ON a %1 segundos - + No profile background found No se pudo encontrar perfil de fondo - + Reading background profile... - + Tick the Float flag in this case. - + Device not set @@ -5425,12 +5425,12 @@ Continuar? El numero de curvas encontrado es differente - + [ET target 1 = %1] [BT target 1 = %2] [ET target 2 = %3] [BT target 2 = %4] - + Background profile not found No se pudo encontrar fondo @@ -5440,22 +5440,22 @@ Continuar? <b>[CRTL N]</b> =Autoguardar + Reinicio + START - + RS ON RS ON - + SV changed from %1 to %2 SV cambiado de %1 a %2 - + Output status while ramp/soak operation set to OFF: %1 Estado final mientras RampSoak cambiado a OFF: %1 - + Phases changed to %1 default: %2 Fases cambiadas a %1 predeterminado: %2) @@ -5465,7 +5465,7 @@ Continuar? - + Save Graph as PDF @@ -5475,22 +5475,22 @@ Continuar? - + Phidget Temperature Sensor 4-input attached - + Phidget Bridge 4-input attached - + Device set to %1. Now, chose Modbus serial port - + <b>But Not:</b> alarm triggered only if the alarm with the given number was not triggered before. Use 0 for no guard. @@ -5506,17 +5506,17 @@ Continue? - + <b>Description:</b> the text of the popup, the name of the program, the number of the event button or the new value of the slider - + Load PID Settings - + Save PID Settings @@ -5536,12 +5536,12 @@ Continue? - + current background ET - + current background BT @@ -5556,27 +5556,27 @@ Continue? - + Phidget 1018 IO attached - + Load Ramp/Soak Table - + Save Ramp/Soak Table - + PID turned on - + PID turned off @@ -5586,72 +5586,72 @@ Continue? - + Return the minimum of x and y. - + Return the maximum of x and y. - + The MODBUS device corresponds to input channels - + 1 and 2.. The MODBUS_34 extra device adds - + input channels 3 and 4. Inputs with slave - + id set to 0 are turned off. Modbus function 3 - + 'read holding register' is the standard. - + Modbus function 4 triggers the use of 'read - + 2 byte integer registers. A temperature of 145.2C - + is often sent as 1452. In that case you have to - + use the symbolic assignment 'x/10'. Few devices - + hold data as 4 byte floats in two registers. - + Yocto Thermocouple attached - + Yocto PT100 attached @@ -5661,92 +5661,92 @@ Continue? - + Phidget Temperature Sensor IR attached - + input register'. Input registers (fct 4) usually - + are from 30000-39999. Most devices hold data in - + IO Command: set(n,0), set(n,1), toggle(n) to set Phidget IO digital output n - + ET value - + BT value - + Extra #1 T1 value - + Extra #1 T2 value - + Extra #2 T1 value - + Extra #2 T2 value - + Yn holds values sampled in the actual interval if refering to ET/BT or extra channels from devices listed before, otherwise Yn hold values sampled in the previous interval - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) writes values to the registers in slaves specified by the given ids - + <b>Event value</b> Value of event (1-100) to be recorded - + Phidget Temperature Sensor IR detached - + Phidget Temperature Sensor 4-input detached - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) or wcoils(slaveId,register,&lt;bool&gt;) writes values to the registers in slaves specified by the given ids - + Phidget Bridge 4-input detached - + Phidget 1018 IO detached @@ -5755,16 +5755,11 @@ Continue? Hottop control turned off - - - Hottop control turned on - - Radio Button - + PID PID @@ -5774,17 +5769,17 @@ Continue? Arduino TC4 - + Program Programa - + Meter Dispositivo - + TC4 @@ -5883,92 +5878,92 @@ Continue? StatusBar - + Ready Listo - + Playback Aid set OFF Ayuda de reproduccion OFF - + setting autotune... AutoAfinamiento... - + Autotune successfully turned OFF AutoAfinamiento Apagado - + Autotune successfully turned ON AutoAfinamiento Encendido - + wait... Espera... - + PID OFF PID OFF - + PID ON PID ON - + Empty SV box Caja SV vacia - + Unable to read SV No se pudo leer SV - + Ramp/Soak operation cancelled Operacion RampSoak cancelada - + No RX data No RX data - + Need to change pattern mode... Se necesita cambiar el modo... - + Pattern has been changed. Wait 5 secs. Modo ha sido cambiado. Espera 5 segundos. - + Pattern could not be changed No se pudo cambiar modo - + RampSoak could not be changed No se pudo cambiar RampSoak - + RS successfully turned OFF RS Apagado - + setONOFFrampsoak(): Ramp Soak could not be set OFF RampSoak no se pudo apagar en setONOFFrampsoak() @@ -5978,247 +5973,247 @@ Continue? problema leyendo R/S en getallsegments() - + Finished reading Ramp/Soak val. Terminado leyendo valores RampSoak - + Finished reading pid values Terminado leyendo valores pid - + setpid(): There was a problem setting %1 problema cambiando pid setpid() %1 - + SV%1 set to %2 SV%1 cambiado a %2 - + Problem setting SV Problema cambiando SV - + Cancelled svN change Cambio de svN cancelado - + PID already using sv%1 PId ya estaba usando sv%1 - + setNsv(): bad response respuesta mala en setNsv() - + setNpid(): bad confirmation mala confirmacion ensetNpid() - + Cancelled pid change Cambio de pid cancelado - + PID was already using pid %1 PID yas estaba usando pid%1 - + setNpid(): Unable to set pid %1 No se pudo cambiar pid%1 en setNpid() - + SV%1 successfully set to %2 SV%1 cambiado a %2 - + pid #%1 successfully set to (%2,%3,%4) pid #%1 cambiado a (%2,%3,%4) - + pid command failed. Bad data at pid%1 (8,8,8): (%2,%3,%4) pid commando error. Data mala en pid%1 (8,8,8): (%2,%3,%4) - + sending commands for p%1 i%2 d%3 Enviando comado para p%1 i%2 d%3 - + PID is using pid = %1 PID esta usando pid = %1 - + PID is using SV = %1 PID esta usando SV = %1 - + Ramp Soak could not be set OFF Ramp Soak no se pudo apagar - + PID set to OFF PID Apagado - + PID set to ON PID Encendido - + Unable No se puede hacer - + No data received No data recibida - + Reading Ramp/Soak %1 ... Leyendo Ramp/Soak %1 ... - + problem reading Ramp/Soak problema leyendo Ramp/Soak - + Current pid = %1. Proceed with autotune command? PID actual = %1. Proceder con AutoAjuste? - + Autotune cancelled AutoAjuste cancelado - + UNABLE to set Autotune No se pudo cambiar AutoAjuste - + SV SV - + Decimal position successfully set to 1 Posicion decimal cambiada a 1 - + Problem setting decimal position Problema cambiando posicion decimal - + Thermocouple type successfully set Tipo de Thermocouple cambiado a - + Problem setting thermocouple type Problema cambiando tipo de thermocouple - + Ramp/Soak successfully written - + Time Units successfully set to MM:SS Unidades de tiempo cambiadas a MM:SS - + Problem setting time units Problema cambiando las unidades de tiempo - + Ramp (MM:SS) Ramp (MM:SS) - + Soak (MM:SS) Soak (MM:SS) - + getsegment(): problem reading ramp - + getsegment(): problem reading soak - + setsv(): Unable to set SV - + getallpid(): Unable to read pid values - + getallpid(): Unable to read current sv - + Work in Progress Trabajo en progreso - + SV successfully set to %1 SV enviado satisfactoriamente a %1 - + RS ON RS ON - + RS OFF RS Apagado - + %1 successfully sent to pid %1 enviado satisfactoriamente al pid - + pid changed to %1 pid cambiado a %1 @@ -6226,157 +6221,157 @@ Continue? Tab - + HUD HUD - + Math Matemáticas - + Style Estilo - + General General - + Notes Notas - + Events Eventos - + Data Datos - + Config Configuración - + Plotter Graficador - + Graph Gráfico - + LCDs LCDs - + RS RS - + SV SV - + Set RS Ajustar RS - + PID PID - + Extra Extra - + Buttons Botones - + ET/BT ET/BT - + Extra Devices Dispositivos Extra - + Symb ET/BT Simb ET/BT - + Sliders Deslizadores - + Palettes Paletas - + Modbus Modbus - + Scale Escala - + UI UI - + Color Color - + Quantifiers - + Ramp/Soak - + Phidgets - + Filter - + Espresso @@ -6394,12 +6389,12 @@ Continue? Tiempo relativo - + ET ET - + BT BT @@ -6454,242 +6449,242 @@ Continue? %1 EVENTO #%2 %3%4 - + Time Tiempo - + Description Descripción - + Type Tipo - + Value Valor - + Action Accion - + Comm Port Puerto Serial - + Baud Rate Flujo Baudios - + Byte Size Tamaño de Byte - + Parity Paridad - + Stopbits Stopbits - + Timeout Tiempo muerto - + Label 1 Etiqueta 1 - + Label 2 Etiqueta 2 - + Label Etiqueta - + Parent Padre - + Width Grosor - + Color Color - + Opaqueness Opacidad - + Delete Wheel Borrar Rueda - + Edit Labels Editar Etiquetas - + Update Labels Actualizar Etiquetas - + Properties Propiedades - + Radius Radio - + Starting angle Angulo inicial - + Color Pattern Paleta de Color - + From De - + Status Estado - + Source Fuente - + SV SV - + Ramp HH:MM Rampa HH:MM - + Soak HH:MM Soak HH:MM - + Documentation Documentación - + Visibility Visibilidad - + Device Dispositivo - + Color 1 Color 1 - + Color 2 Color 2 - + y1(x) y1(x) - + y2(x) y2(x) - + Text Color Color de Texto - + LCD 1 LCD 1 - + LCD 2 LCD 2 - + Curve 1 Curva 1 - + Curve 2 Curva 2 - + If Alarm Si Alamrma - + Condition Condición - + Projection Proyección - + Text Size Tamaño de Texto - + Temp Temp @@ -6699,85 +6694,90 @@ Continue? INICIO - + DRY END SECO - + FC START FC START - + FC END FC FIN - + SC START SC START - + SC END SC FIN - + COOL ENFRIAR - + EVENT #%2 %3%4 EVENTO #%2 %3%4 - + DROP DESCAR - + CHARGE - + But Not - + DeltaET DeltaET - + DeltaBT DeltaBT - + EVENT #%1 %2%3 EVENTO #%1 %2%3 - + Beep Pitido - + Name - + Weight Peso + + + Nr + + Textbox @@ -7095,7 +7095,7 @@ Aromática Actualiza el evento - + linear: linear interpolation cubic: 3rd order spline interpolation nearest: y value of the nearest point @@ -7104,12 +7104,12 @@ Cubica: Interpolacion cubica de tercer grado Cercana: valor y del punto cercano - + Automatic generated name = This text + date + time Nombre generado automaticamente = Texto + fecha + tiempo - + Allows to enter a description of the last event Permite escribir una descripcion en el ultimo evento @@ -7119,172 +7119,172 @@ Cercana: valor y del punto cercano PID potencia % - + Save image using current graph size to a png format Guarda Imagen usando el tamaño de la grafica en fomato png - + Add new extra Event button Añade boton de Evento extra - + Delete the last extra Event button Borra el ultimo boton de Evento extra - + Show help Mostrar Ayuda - + Example: 100 + 2*x Ejemplo: 100 + 2*x - + Example: 100 + x Ejemplo: 100 + x - + Erases wheel parent hierarchy Borra herarquia padre - + Sets graph hierarchy child->parent instead of parent->child Cambia herarquia hijo>padre a padre>hijo - + Increase size of text in all the graph Incrementa el tamaño del texto en toda la grafica - + Decrease size of text in all the graph Disminuye el tamaño del texto en todo la grafica - + Decorative edge beween wheels Borde decorativo entre ruedas - + Line thickness Grosor de linea - + Line color Color de linea - + Apply color pattern to whole graph Aplica modo de color en toda la grafica - + Add new wheel Añade nueva rueda - + Rotate graph 1 degree counter clockwise Gira la grafica 1 grado contra reloj - + Rotate graph 1 degree clockwise Gira la grafica 1 grado - + Save graph to a text file.wg Guarda la grafica a ficha de texto - + open graph file.wg Abre grafica ficha.wg - + Close wheel graph editor Cierra editor de grafica de ruedas - + Sets Wheel graph to view mode pone la Grafica de Rueda en modo normal - + ON/OFF logs serial communication ON/OFF grabador communicaion serial - + Aspect Ratio Proporción - + Backup all palettes to a text file Guarda todas las paletas a una ficha de texto - + ON/OFF of automatic saving when pressing keyboard letter [a] Enciende Apaga AutoGuardar con la tecla [a] - + Sets the directory to store batch profiles when using the letter [a] Guarda el directorio para guardar cuando se usa la tecla [a] - + Action Type Tipos de Accion - + Action String Comando de Accion - + <b>Label</b>= <b>Etiqueta</b>= - + <b>Description </b>= <b>Descripcion </b>= - + <b>Type </b>= <b>Tipo </b>= - + <b>Value </b>= <b>Valor </b>= - + <b>Documentation </b>= <b>Documentacion </b>= - + <b>Button# </b>= <b>Boton# </b>= @@ -7344,17 +7344,17 @@ Cercana: valor y del punto cercano Reinicializar - + Restore all palettes from a text file Restaurar todas las paletas desde fichero de texto - + Clear alarms table - + Interval diff --git a/translations/artisan_fi.ts b/translations/artisan_fi.ts index 1c240026f..5dc725a3b 100644 --- a/translations/artisan_fi.ts +++ b/translations/artisan_fi.ts @@ -132,587 +132,587 @@ END - + Update - + OK - + Cancel - + Color - + Plot - + Background - + Virtual Device - + Save Image - + Help - + Info - + Set - + Defaults - + Order - + Add - + Delete - + in - + out - + Search - + Path - + Save - + Load - + Del - + Align - + Up - + Down - + Left - + Right - + Reset - + Close - + Create - + Select - + Grid - + Title - + Y Label - + X Label - + Drying Phase - + Maillard Phase - + Development Phase - + Cooling Phase - + ET - + BT - + DeltaET - + DeltaBT - + Markers - + Text - + Watermarks - + C Lines - + Grey - + LED - + B/W - + Reset Parents - + Reverse Hierarchy - + + - + - - + Line Color - + < - + > - + Save File - + Save Img - + View Mode - + Open - + Set Color - + All On - + All Off - + Read Ra/So values - + RampSoak ON - + RampSoak OFF - + PID OFF - + PID ON - + Write SV - + SV Buttons ON - + SV Buttons OFF - + Read SV - + Set p - + Set i - + Set d - + Autotune ON - + Autotune OFF - + Read PID Values - + Read - + Set ET PID to 1 decimal point - + Set BT PID to 1 decimal point - + Read RS values - + Write SV1 - + Write SV2 - + Write SV3 - + Write SV4 - + Write SV5 - + Write SV6 - + Write SV7 - + ON SV buttons - + OFF SV buttons - + Read SV (7-0) - + pid 1 - + pid 2 - + pid 3 - + pid 4 - + pid 5 - + pid 6 - + pid 7 - + Set ET PID to MM:SS time units - + Write - + Insert - + Clear - + scan - + Write All - + Write RS values - + Write SV (7-0) - + Read PIDs - + Write PIDs - + Apply - + On - + Off - + calc - + unit - + << - + >> @@ -720,317 +720,317 @@ END CheckBox - + Heavy FC - + Low FC - + Light Cut - + Dark Cut - + Drops - + Oily - + Uneven - + Tipping - + Scorching - + Divots - + DeltaET - + DeltaBT - + Smooth Spikes - + Drop Spikes - + Limits - + Projection - + Show - + Beep - + Delete roast properties on RESET - + Serial Log ON/OFF - + Autosave [a] - + Lock Max - + Button - + Mini Editor - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL END - + Auto Adjusted - + Watermarks - + Background - + Text - + Events - + Playback Aid - + Time - + Bar - + ETBTa - + Evaluation - + Characteristics - + ET - + BT - + Load alarms from profile - + Auto CHARGE - + Auto DROP - + Mark TP - + Phases LCDs - + Auto DRY - + Auto FCs - + Decimal Places - + Modbus Port - + Smooth2 - + Start PID on CHARGE - + Load Ramp/Soak table from profile - + Control Button - + Ratiometric - + Align FCs - + /min - + Alarm Popups - + Lock @@ -1058,477 +1058,477 @@ END - + linear - + newton - + metrics - + thermal - + cubic - + nearest - + g - + Kg - + ml - + l - + ET - + BT - + upper right - + upper left - + lower left - + lower right - + right - + center left - + center right - + lower center - + upper center - + center - + 1 minute - + 2 minute - + 3 minute - + 4 minute - + 5 minute - + solid - + dashed - + dashed-dot - + dotted - + None - + Event #0 - + Event #%1 - + lb - + liter - + gallon - + quart - + pint - + cup - + cm^3 - + Type - + Value - + Serial Command - + Modbus Command - + DTA Command - + Call Program - + OFF - + ON - + Multiple Event - + DeltaBT - + DeltaET - + SV Commands - + Ramp Commands - + little-endian - + grey - + Dark Grey - + Slate Grey - + Light Gray - + Black - + White - + Transparent - + Flat - + Perpendicular - + Radial - + START - + CHARGE - + TP - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL - + below - + above - + Pop Up - + Event Button - + Slider - + classic - + xkcd - + Default - + Humor - + Comic - + DRY - + FCs - + FCe - + SCs - + SCe - + COOL END - + IO Command - + Hottop Heater - + Hottop Fan - + Hottop Command @@ -1594,12 +1594,12 @@ END Directory - + profiles - + other @@ -1607,17 +1607,17 @@ END Error Message - + Exception: - + Value Error: - + IO Error: @@ -1627,137 +1627,137 @@ END - + Unable to move CHARGE to a value that does not exist - + Modbus Error: - + Serial Exception: - + F80h Error - + CRC16 data corruption ERROR. TX does not match RX. Check wiring - + No RX data received - + DTAcommand(): %1 bytes received but 15 needed - + Unable to open serial port - + HH806Wtemperature(): Unable to initiate device - + HH506RAGetID: %1 bytes received but 5 needed - + HH506RAtemperature(): Unable to get id from HH506RA device - + HH506RAtemperature(): %1 bytes received but 14 needed - + CENTER302temperature(): %1 bytes received but 7 needed - + CENTER303temperature(): %1 bytes received but 8 needed - + CENTER306temperature(): %1 bytes received but 10 needed - + CENTER309temperature(): %1 bytes received but 45 needed - + Arduino could not set channels - + Arduino could not set temperature unit - + Serial Exception: invalid comm port - + Serial Exception: timeout - + Segment values could not be written into PID - + RampSoak could not be changed - + pid.readoneword(): %1 RX bytes received (7 needed) for unit ID=%2 - + Univariate: no profile data available - + Polyfit: no profile data available - + MS6514temperature(): %1 bytes received but 16 needed - + HH806AUtemperature(): %1 bytes received but 16 needed @@ -1767,7 +1767,7 @@ END - + Arduino could not set filters @@ -1828,147 +1828,147 @@ END Form Caption - + Extras - + Roast Properties - + Artisan Platform - + Settings Viewer - + Serial Log - + Error Log - + Message History - + Keyboard Autosave [a] - + AutoSave Path - + Axes - + Roast Calculator - + Events - + Roast Phases - + Cup Profile - + Profile Background - + Statistics - + Designer Config - + Manual Temperature Logger - + Serial Ports Configuration - + Device Assignment - + Colors - + Wheel Graph Editor - + Alarms - + Fuji PXR PID Control - + Fuji PXG PID Control - + Delta DTA PID Control - + Arduino Control - + Volume Calculator - + Tare Setup @@ -1976,257 +1976,257 @@ END GroupBox - + Curves - + LCDs - + HUD - + Input Filters - + Interpolate - + Univariate - + Appearance - + Resolution - + Sound - + Times - + Time Axis - + Temperature Axis - + DeltaBT/DeltaET Axis - + Legend Location - + Grid - + Rate of Change - + Temperature Conversion - + Weight Conversion - + Volume Conversion - + Event Types - + Default Buttons - + Management - + Evaluation - + Display - + Initial Settings - + Input 1 - + Input 2 - + Input 3 - + Input 4 - + PID - + Arduino TC4 - + External Program - + Symbolic Assignments - + Timer LCD - + ET LCD - + BT LCD - + DeltaET LCD - + DeltaBT LCD - + Extra Devices / PID SV LCD - + Label Properties - + Polyfit - + Look - + Network - + p-i-d - + Set Value - + Phidget IO - + Phidgets 1045 - + Phidgets 1046 RTD - + WebLCDs - + Phidgets 1048/1051 - + Sampling @@ -2412,12 +2412,12 @@ END Label - + ET - + BT @@ -2432,42 +2432,42 @@ END - + at - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP @@ -2497,7 +2497,7 @@ END - + Time @@ -2522,717 +2522,717 @@ END - + City - + City+ - + Full City - + Full City+ - + Light French - + French - + at %1 - + %1 after FCs - + %1 after FCe - + ET - BT = %1 - + ET - BT = %1%2 - + ET Target 1 - + BT Target 1 - + ET Target 2 - + BT Target 2 - + Mode - + ET p-i-d 1 - + Smooth Deltas - + Smooth Curves - + min - + max - + Y(x) - + COOL - + Title - + Date - + Beans - + Weight - + in - + out - + % - + Volume - + Density - + per - + Bean Size - + mm - + Whole Color - + Ground Color - + Moisture Greens - + % - + Ambient Conditions - + Roaster - + Operator - + Roasting Notes - + Cupping Notes - + Ambient Source - + (%1 g/l) - + Number of errors found %1 - + Max - + Min - + Rotation - + Initial Max - + Step - + Style - + Width - + Opaqueness - + Enter two times along profile - + Start (00:00) - + End (00:00) - + Fahrenheit - + Celsius - + Time syntax error. Time not valid - + Error: End time smaller than Start time - + Best approximation was made from %1 to %2 - + No profile found - + Bars - + Color - + Marker - + Thickness - + Opacity - + Size - + Max buttons per row - + Color Pattern - + palette # - + Event - + Action - + Command - + Offset - + Factor - + Drying - + Maillard - + Development - + Default - + Aspect Ratio - + ET Color - + BT Color - + DeltaET Color - + DeltaBT Color - + Text Warning - + sec - + Cooling - + Curviness - + Events Playback - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Settings for non-Modbus devices - + Slave - + Register - + Float - + Function - + Device - + Control ET - + Read BT - + Type - + RS485 Unit ID - + ET Channel - + BT Channel - + AT Channel - + ET Y(x) - + BT Y(x) - + Ratio - + Text - + Edge - + Line - + Color pattern - + dg - + Enter description - + Ramp Soak HH:MM<br>(1-4) - + Ramp Soak HH:MM<br>(5-8) - + Ramp/Soak Pattern - + WARNING - + Writing eeprom memory - + <u>Max life</u> 10,000 writes - + Infinite read life. - + After <u>writing</u> an adjustment,<br>never power down the pid<br>for the next 5 seconds <br>or the pid may never recover. - + Read operations manual - + ET Thermocouple type - + BT Thermocouple type - + NOTE: BT Thermocouple type is not stored in the Artisan settings - + Artisan uses 1 decimal point - + Ramp Soak (MM:SS)<br>(1-7) - + Ramp Soak (MM:SS)<br>(8-16) - + Pattern - + SV (7-0) - + Write - + P - + I - + D - + Artisan Fuji PXG uses MINUTES:SECONDS units in Ramp/Soaks - + SV @@ -3257,22 +3257,22 @@ END - + Start - + End - + Path Effects - + Font @@ -3302,12 +3302,12 @@ END - + Prefix - + Source @@ -3317,77 +3317,77 @@ END - + Window - + Cycle - + Lookahead - + Manual - + Ramp/Soak - + Background - + SV Buttons - + SV Slider - + Coarse - + Host - + Port - + HUD Button - + Raw - + ServerId: - + Password: @@ -3422,12 +3422,12 @@ END - + Moisture Roasted - + Density in: %1 g/l => Density out: %2 g/l @@ -3452,112 +3452,112 @@ END - + <b>%1</b> %2/sec, <b>%3</b> %4/min - + Async - + Change - + Gain - + Rate - + Wiring - + Delta Span - + Unit - + ml - + Unit Weight - + g - + Kg - + l - + in - + out - + Moisture loss: %1% Organic loss: %2% - + Filter - + Emissivity - + ON - + OFF - + %1 to reach ET %2 - + %1 to reach BT %2 @@ -3567,17 +3567,17 @@ END - + XT Color - + XT - + current palette @@ -3623,52 +3623,52 @@ END Marker - + Circle - + Square - + Pentagon - + Diamond - + Star - + Hexagon 1 - + Hexagon 2 - + + - + x - + None @@ -4280,7 +4280,7 @@ Profile missing [CHARGE] or [DROP] - + Open Wheel Graph @@ -4430,7 +4430,7 @@ Profile missing [CHARGE] or [DROP] - + No profile found @@ -4536,720 +4536,720 @@ Continue? - + Alarm Config - + Alarms are not available for device None - + Switch Language - + Language successfully changed. Restart the application. - + Import K202 CSV - + K202 file loaded successfully - + Import K204 CSV - + K204 file loaded successfully - + Import HH506RA CSV - + HH506RA file loaded successfully - + Save Graph as PNG - + %1 size(%2,%3) saved - + Save Graph as SVG - + %1 saved - + Invalid Wheel graph format - + Wheel Graph succesfully open - + Return the absolute value of x. - + Return the arc cosine (measured in radians) of x. - + Return the arc sine (measured in radians) of x. - + Return the arc tangent (measured in radians) of x. - + Return the cosine of x (measured in radians). - + Convert angle x from radians to degrees. - + Return e raised to the power of x. - + Return the logarithm of x to the given base. - + Return the base 10 logarithm of x. - + Return x**y (x to the power of y). - + Convert angle x from degrees to radians. - + Return the sine of x (measured in radians). - + Return the square root of x. - + Return the tangent of x (measured in radians). - + MATHEMATICAL FUNCTIONS - + SYMBOLIC VARIABLES - + Symbolic Functions - + Save Palettes - + Palettes saved - + Invalid palettes file format - + Palettes loaded - + Load Palettes - + Alarms loaded - + Interpolation failed: no profile available - + Sound turned ON - + Sound turned OFF - + [ET target 1 = %1] [BT target 1 = %2] [ET target 2 = %3] [BT target 2 = %4] - + Event #%1 added - + Event #%1 deleted - + No events found - + Roast properties updated but profile not saved to disk - + Autosave ON. Prefix: %1 - + Autosave OFF - + xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) - + <b>Event</b> hide or show the corresponding slider - + <b>Action</b> Perform an action on slider release - + <b>Command</b> depends on the action type ('{}' is replaced by <i>value</i>*<i>factor</i> + <i>offset</i>) - + Serial Command: ASCII serial command or binary a2b_uu(serial command) - + DTA Command: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating - + <b>Offset</b> added as offset to the slider value - + <b>Factor</b> multiplicator of the slider value - + Event custom buttons - + Event configuration saved - + Found empty event type box - + <b>Button Label</b> Enter \n to create labels with multiple lines. - + <b>Event Description</b> Description of the Event to be recorded. - + <b>Event type</b> Type of event to be recorded. - + <b>Action</b> Perform an action at the time of the event - + <b>Documentation</b> depends on the action type ('{}' is replaced by the event value): - + Call Program: A program/script path (absolute or relative) - + Multiple Event: Adds events of other button numbers separated by a comma: 1,2,3, etc. - + <b>Button Visibility</b> Hides/shows individual button - + <b>Keyboard Shorcut: </b> [b] Hides/shows Extra Button Rows - + Phases changed to %1 default: %2 - + Background profile not found - + Background does not match number of labels - + Playback Aid set ON at %1 secs - + No profile background found - + Reading background profile... - + Not enough time points for an ET curviness of %1. Set curviness to %2 - + Designer Config - + Not enough time points for an BT curviness of %1. Set curviness to %2 - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + Incorrect time format. Please recheck %1 time - + Times need to be in ascending order. Please recheck %1 time - + Designer has been reset - + Tick the Float flag in this case. - + Serial Port Settings: %1, %2, %3, %4, %5, %6 - + External program - + Device not set - + PID to control ET set to %1 %2 ; PID to read BT set to %3 %4 - + Device set to %1. Now, check Serial Port settings - + Device set to %1. Now, chose serial port - + Device set to CENTER 305, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 309. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 303. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH506RA. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH806AU. Now, chose serial port - + Device set to %1 - + Device set to %1%2 - + Device set to %1, which is equivalent to CENTER 302. Now, chose serial port - + Color of %1 set to %2 - + Save Wheel graph - + Wheel Graph saved - + Load Alarms - + Save Alarms - + <b>Status:</b> activate or deactive alarm - + <b>If Alarm:</b> alarm triggered only if the alarm with the given number was triggered before. Use 0 for no guard. - + <b>From:</b> alarm only triggered after the given event - + <b>Time:</b> if not 00:00, alarm is triggered mm:ss after the event 'From' happend - + <b>Source:</b> the temperature source that is observed - + <b>Condition:</b> alarm is triggered if source rises above or below the specified temperature - + <b>Temp:</b> the speficied temperature limit - + <b>Action:</b> if all conditions are fulfilled the alarm triggeres the corresponding action - + <b>NOTE:</b> each alarm is only triggered once - + OFF - + CONTINUOUS CONTROL - + ON - + STANDBY MODE - + The rampsoak-mode tells how to start and end the ramp/soak - + Your rampsoak mode in this pid is: - + Mode = %1 - + Start to run from PV value: %1 - + End output status at the end of ramp/soak: %1 - + Output status while ramp/soak operation set to OFF: %1 - + Repeat Operation at the end: %1 - + Recomended Mode = 0 - + If you need to change it, change it now and come back later - + Use the Parameter Loader Software by Fuji if you need to - + Continue? - + Current sv = %1. Change now to sv = %2? - + Change svN - + Current pid = %1. Change now to pid =%2? - + Ramp Soak start-end mode - + Pattern changed to %1 - + Pattern did not changed - + Ramp/Soak was found ON! Turn it off before changing the pattern - + Ramp/Soak was found in Hold! Turn it off before changing the pattern - + Activate PID front buttons - + Remember SV memory has a finite life of ~10,000 writes. @@ -5257,52 +5257,52 @@ Proceed? - + RS ON - + RS OFF - + RS on HOLD - + PXG sv#%1 set to %2 - + PXR sv set to %1 - + SV%1 changed from %2 to %3) - + Unable to set sv%1 - + SV changed from %1 to %2 - + Unable to set sv - + Unable to set new sv @@ -5312,7 +5312,7 @@ Proceed? - + Save Graph as PDF @@ -5322,22 +5322,22 @@ Proceed? - + Phidget Temperature Sensor 4-input attached - + Phidget Bridge 4-input attached - + Device set to %1. Now, chose Modbus serial port - + <b>But Not:</b> alarm triggered only if the alarm with the given number was not triggered before. Use 0 for no guard. @@ -5353,17 +5353,17 @@ Continue? - + <b>Description:</b> the text of the popup, the name of the program, the number of the event button or the new value of the slider - + Load PID Settings - + Save PID Settings @@ -5383,12 +5383,12 @@ Continue? - + current background ET - + current background BT @@ -5403,27 +5403,27 @@ Continue? - + Phidget 1018 IO attached - + Load Ramp/Soak Table - + Save Ramp/Soak Table - + PID turned on - + PID turned off @@ -5433,72 +5433,72 @@ Continue? - + Return the minimum of x and y. - + Return the maximum of x and y. - + The MODBUS device corresponds to input channels - + 1 and 2.. The MODBUS_34 extra device adds - + input channels 3 and 4. Inputs with slave - + id set to 0 are turned off. Modbus function 3 - + 'read holding register' is the standard. - + Modbus function 4 triggers the use of 'read - + 2 byte integer registers. A temperature of 145.2C - + is often sent as 1452. In that case you have to - + use the symbolic assignment 'x/10'. Few devices - + hold data as 4 byte floats in two registers. - + Yocto Thermocouple attached - + Yocto PT100 attached @@ -5508,92 +5508,92 @@ Continue? - + Phidget Temperature Sensor IR attached - + input register'. Input registers (fct 4) usually - + are from 30000-39999. Most devices hold data in - + IO Command: set(n,0), set(n,1), toggle(n) to set Phidget IO digital output n - + ET value - + BT value - + Extra #1 T1 value - + Extra #1 T2 value - + Extra #2 T1 value - + Extra #2 T2 value - + Yn holds values sampled in the actual interval if refering to ET/BT or extra channels from devices listed before, otherwise Yn hold values sampled in the previous interval - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) writes values to the registers in slaves specified by the given ids - + <b>Event value</b> Value of event (1-100) to be recorded - + Phidget Temperature Sensor IR detached - + Phidget Temperature Sensor 4-input detached - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) or wcoils(slaveId,register,&lt;bool&gt;) writes values to the registers in slaves specified by the given ids - + Phidget Bridge 4-input detached - + Phidget 1018 IO detached @@ -5602,31 +5602,26 @@ Continue? Hottop control turned off - - - Hottop control turned on - - Radio Button - + Meter - + PID - + Program - + TC4 @@ -5715,337 +5710,337 @@ Continue? StatusBar - + Playback Aid set OFF - + Ready - + Decimal position successfully set to 1 - + Problem setting decimal position - + Problem setting thermocouple type - + setting autotune... - + Autotune successfully turned OFF - + Autotune successfully turned ON - + wait... - + PID OFF - + PID ON - + SV successfully set to %1 - + Empty SV box - + Unable to read SV - + Ramp/Soak operation cancelled - + No RX data - + RS ON - + Need to change pattern mode... - + Pattern has been changed. Wait 5 secs. - + Pattern could not be changed - + RampSoak could not be changed - + RS OFF - + RS successfully turned OFF - + setONOFFrampsoak(): Ramp Soak could not be set OFF - + getsegment(): problem reading ramp - + getsegment(): problem reading soak - + Finished reading Ramp/Soak val. - + setpid(): There was a problem setting %1 - + Ramp/Soak successfully written - + Time Units successfully set to MM:SS - + Problem setting time units - + Thermocouple type successfully set - + SV%1 set to %2 - + Problem setting SV - + Cancelled svN change - + PID already using sv%1 - + setNsv(): bad response - + setNpid(): bad confirmation - + Cancelled pid change - + PID was already using pid %1 - + setNpid(): Unable to set pid %1 - + SV%1 successfully set to %2 - + setsv(): Unable to set SV - + pid #%1 successfully set to (%2,%3,%4) - + pid command failed. Bad data at pid%1 (8,8,8): (%2,%3,%4) - + getallpid(): Unable to read pid values - + PID is using pid = %1 - + getallpid(): Unable to read current sv - + PID is using SV = %1 - + Ramp Soak could not be set OFF - + PID set to OFF - + PID set to ON - + Unable - + No data received - + Reading Ramp/Soak %1 ... - + problem reading Ramp/Soak - + Current pid = %1. Proceed with autotune command? - + Autotune cancelled - + UNABLE to set Autotune - + SV - + Ramp (MM:SS) - + Soak (MM:SS) - + Work in Progress - + sending commands for p%1 i%2 d%3 - + %1 successfully sent to pid - + pid changed to %1 - + Finished reading pid values @@ -6053,157 +6048,157 @@ Continue? Tab - + HUD - + Plotter - + Math - + UI - + General - + Notes - + Events - + Data - + Config - + Buttons - + Sliders - + Palettes - + Style - + ET/BT - + Extra - + Modbus - + Scale - + Extra Devices - + Symb ET/BT - + Graph - + LCDs - + RS - + SV - + PID - + Set RS - + Color - + Quantifiers - + Ramp/Soak - + Phidgets - + Filter - + Espresso @@ -6211,335 +6206,340 @@ Continue? Table - + ET - + BT - + Time - + Description - + Type - + Value - + Label - + Action - + Documentation - + Visibility - + Color - + Text Color - + Device - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Color 1 - + Color 2 - + Label 1 - + Label 2 - + y1(x) - + y2(x) - + LCD 1 - + LCD 2 - + Curve 1 - + Curve 2 - + Parent - + Width - + Opaqueness - + Delete Wheel - + Edit Labels - + Update Labels - + Properties - + Radius - + Starting angle - + Projection - + Text Size - + Color Pattern - + Status - + If Alarm - + From - + Source - + Condition - + Temp - + SV - + Ramp HH:MM - + Soak HH:MM - + DRY END - + FC START - + FC END - + SC START - + SC END - + COOL - + EVENT #%2 %3%4 - + DROP - + CHARGE - + But Not - + DeltaET - + DeltaBT - + EVENT #%1 %2%3 - + Beep - + Name - + Weight + + + Nr + + Textbox @@ -6912,204 +6912,204 @@ Pungency - + <b>Label</b>= - + <b>Description </b>= - + <b>Type </b>= - + <b>Value </b>= - + <b>Documentation </b>= - + <b>Button# </b>= - + Save image using current graph size to a png format - + linear: linear interpolation cubic: 3rd order spline interpolation nearest: y value of the nearest point - + ON/OFF logs serial communication - + Automatic generated name = This text + date + time - + ON/OFF of automatic saving when pressing keyboard letter [a] - + Sets the directory to store batch profiles when using the letter [a] - + Allows to enter a description of the last event - + Add new extra Event button - + Delete the last extra Event button - + Show help - + Backup all palettes to a text file - + Action Type - + Action String - + Aspect Ratio - + Example: 100 + 2*x - + Example: 100 + x - + Erases wheel parent hierarchy - + Sets graph hierarchy child->parent instead of parent->child - + Increase size of text in all the graph - + Decrease size of text in all the graph - + Decorative edge beween wheels - + Line thickness - + Line color - + Apply color pattern to whole graph - + Add new wheel - + Rotate graph 1 degree counter clockwise - + Rotate graph 1 degree clockwise - + Save graph to a text file.wg - + Sets Wheel graph to view mode - + open graph file.wg - + Close wheel graph editor - + Restore all palettes from a text file - + Clear alarms table - + Interval diff --git a/translations/artisan_fr.ts b/translations/artisan_fr.ts index 1ac3cddc8..39717bddb 100644 --- a/translations/artisan_fr.ts +++ b/translations/artisan_fr.ts @@ -132,587 +132,587 @@ END - + Update - + OK - + Cancel - + Color - + Plot - + Background - + Virtual Device - + Save Image - + Help - + Info - + Set - + Defaults - + Order - + Add - + Delete - + in - + out - + scan - + Search - + Path - + Save - + Load - + Apply - + Del - + Align - + Up - + Down - + Left - + Right - + Reset - + Close - + Create - + Select - + Grid - + Title - + Y Label - + X Label - + Drying Phase - + Maillard Phase - + Development Phase - + Cooling Phase - + ET - + BT - + DeltaET - + DeltaBT - + Markers - + Text - + Watermarks - + C Lines - + Grey - + LED - + B/W - + Reset Parents - + Reverse Hierarchy - + + - + - - + Line Color - + < - + > - + Save File - + Save Img - + View Mode - + Open - + Set Color - + All On - + All Off - + Insert - + Clear - + Read Ra/So values - + RampSoak ON - + RampSoak OFF - + PID OFF - + PID ON - + Write SV - + SV Buttons ON - + SV Buttons OFF - + Read SV - + Set p - + Set i - + Set d - + Autotune ON - + Autotune OFF - + Read PID Values - + Read - + Set ET PID to 1 decimal point - + Set BT PID to 1 decimal point - + Write All - + Read RS values - + Write RS values - + Write SV1 - + Write SV2 - + Write SV3 - + Write SV4 - + Write SV5 - + Write SV6 - + Write SV7 - + ON SV buttons - + OFF SV buttons - + Read SV (7-0) - + Write SV (7-0) - + pid 1 - + pid 2 - + pid 3 - + pid 4 - + pid 5 - + pid 6 - + pid 7 - + Read PIDs - + Write PIDs - + Set ET PID to MM:SS time units - + On - + Off - + Write - + calc - + unit - + << - + >> @@ -720,317 +720,317 @@ END CheckBox - + Heavy FC - + Low FC - + Light Cut - + Dark Cut - + Drops - + Oily - + Uneven - + Tipping - + Scorching - + Divots - + DeltaET - + DeltaBT - + Smooth Spikes - + Smooth2 - + Drop Spikes - + Limits - + Projection - + Decimal Places - + Show - + Beep - + Delete roast properties on RESET - + Serial Log ON/OFF - + Autosave [a] - + Lock Max - + Button - + Mini Editor - + Auto CHARGE - + Auto DROP - + Mark TP - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL END - + Auto Adjusted - + Watermarks - + Phases LCDs - + Auto DRY - + Auto FCs - + Background - + Text - + Events - + Align FCs - + Playback Aid - + Time - + Bar - + /min - + ETBTa - + Evaluation - + Characteristics - + ET - + BT - + Modbus Port - + Control Button - + Ratiometric - + Load alarms from profile - + Start PID on CHARGE - + Load Ramp/Soak table from profile - + Alarm Popups - + Lock @@ -1058,477 +1058,477 @@ END - + linear - + newton - + metrics - + thermal - + classic - + xkcd - + Default - + Humor - + Comic - + cubic - + nearest - + DeltaET - + DeltaBT - + ET - + BT - + g - + Kg - + ml - + l - + upper right - + upper left - + lower left - + lower right - + right - + center left - + center right - + lower center - + upper center - + center - + 1 minute - + 2 minute - + 3 minute - + 4 minute - + 5 minute - + solid - + dashed - + dashed-dot - + dotted - + None - + Event #0 - + Event #%1 - + lb - + liter - + gallon - + quart - + pint - + cup - + cm^3 - + Type - + Value - + Serial Command - + Modbus Command - + DTA Command - + Call Program - + IO Command - + OFF - + ON - + Multiple Event - + SV Commands - + Ramp Commands - + little-endian - + grey - + Dark Grey - + Slate Grey - + Light Gray - + Black - + White - + Transparent - + Flat - + Perpendicular - + Radial - + START - + CHARGE - + TP - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL - + below - + above - + Pop Up - + Event Button - + Slider - + DRY - + FCs - + FCe - + SCs - + SCe - + COOL END - + Hottop Heater - + Hottop Fan - + Hottop Command @@ -1594,12 +1594,12 @@ END Directory - + profiles - + other @@ -1607,12 +1607,12 @@ END Error Message - + Exception: - + Value Error: @@ -1622,7 +1622,7 @@ END - + IO Error: @@ -1632,142 +1632,142 @@ END - + Univariate: no profile data available - + Polyfit: no profile data available - + Unable to move CHARGE to a value that does not exist - + Modbus Error: - + Serial Exception: - + F80h Error - + CRC16 data corruption ERROR. TX does not match RX. Check wiring - + No RX data received - + DTAcommand(): %1 bytes received but 15 needed - + Unable to open serial port - + MS6514temperature(): %1 bytes received but 16 needed - + HH806AUtemperature(): %1 bytes received but 16 needed - + HH806Wtemperature(): Unable to initiate device - + HH506RAGetID: %1 bytes received but 5 needed - + HH506RAtemperature(): Unable to get id from HH506RA device - + HH506RAtemperature(): %1 bytes received but 14 needed - + CENTER302temperature(): %1 bytes received but 7 needed - + CENTER303temperature(): %1 bytes received but 8 needed - + CENTER306temperature(): %1 bytes received but 10 needed - + CENTER309temperature(): %1 bytes received but 45 needed - + Arduino could not set channels - + Arduino could not set temperature unit - + Serial Exception: invalid comm port - + Serial Exception: timeout - + Segment values could not be written into PID - + RampSoak could not be changed - + pid.readoneword(): %1 RX bytes received (7 needed) for unit ID=%2 - + Arduino could not set filters @@ -1828,147 +1828,147 @@ END Form Caption - + Extras - + Roast Properties - + Artisan Platform - + Settings Viewer - + Serial Log - + Error Log - + Message History - + Keyboard Autosave [a] - + AutoSave Path - + Axes - + Roast Calculator - + Events - + Roast Phases - + Cup Profile - + Profile Background - + Statistics - + Designer Config - + Manual Temperature Logger - + Serial Ports Configuration - + Device Assignment - + Colors - + Wheel Graph Editor - + Alarms - + Fuji PXR PID Control - + Fuji PXG PID Control - + Arduino Control - + Delta DTA PID Control - + Volume Calculator - + Tare Setup @@ -1976,257 +1976,257 @@ END GroupBox - + Curves - + LCDs - + HUD - + Input Filters - + Look - + Interpolate - + Univariate - + Polyfit - + Appearance - + Resolution - + Sound - + WebLCDs - + Times - + Time Axis - + Temperature Axis - + DeltaBT/DeltaET Axis - + Legend Location - + Grid - + Rate of Change - + Temperature Conversion - + Weight Conversion - + Volume Conversion - + Event Types - + Default Buttons - + Management - + Evaluation - + Display - + Initial Settings - + Input 1 - + Input 2 - + Input 3 - + Input 4 - + Phidgets 1045 - + Phidgets 1046 RTD - + Phidget IO - + Network - + PID - + Arduino TC4 - + External Program - + Symbolic Assignments - + Timer LCD - + ET LCD - + BT LCD - + DeltaET LCD - + DeltaBT LCD - + Extra Devices / PID SV LCD - + Label Properties - + p-i-d - + Set Value - + Phidgets 1048/1051 - + Sampling @@ -2412,12 +2412,12 @@ END Label - + ET - + BT @@ -2432,47 +2432,47 @@ END - + at - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL @@ -2482,7 +2482,7 @@ END - + min @@ -2547,7 +2547,7 @@ END - + Time @@ -2632,932 +2632,932 @@ END - + City - + City+ - + Full City - + Full City+ - + Light French - + French - + at %1 - + %1 after FCs - + %1 after FCe - + ET - BT = %1 - + ET - BT = %1%2 - + HUD Button - + ET Target 1 - + BT Target 1 - + ET Target 2 - + BT Target 2 - + Mode - + ET p-i-d 1 - + Smooth Deltas - + Smooth Curves - + Window - + max - + Delta Span - + Path Effects - + Style - + Font - + Y(x) - + Start - + End - + Port - + Title - + Date - + Beans - + Weight - + in - + out - + % - + Volume - + Density - + per - + Bean Size - + mm - + Whole Color - + Ground Color - + Moisture Greens - + % - + Moisture Roasted - + Ambient Conditions - + Roaster - + Operator - + Roasting Notes - + Cupping Notes - + Ambient Source - + Density in: %1 g/l => Density out: %2 g/l - + (%1 g/l) - + Number of errors found %1 - + Prefix - + Max - + Min - + Rotation - + Initial Max - + Step - + Width - + Opaqueness - + Enter two times along profile - + Start (00:00) - + End (00:00) - + Fahrenheit - + Celsius - + Time syntax error. Time not valid - + Error: End time smaller than Start time - + Best approximation was made from %1 to %2 - + <b>%1</b> %2/sec, <b>%3</b> %4/min - + No profile found - + Bars - + Color - + Marker - + Thickness - + Opacity - + Size - + Max buttons per row - + Color Pattern - + palette # - + Event - + Action - + Command - + Offset - + Factor - + Source - + Coarse - + Drying - + Maillard - + Development - + Default - + Aspect Ratio - + ET Color - + BT Color - + DeltaET Color - + DeltaBT Color - + Text Warning - + sec - + Cooling - + Curviness - + Events Playback - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Settings for non-Modbus devices - + Slave - + Register - + Float - + Function - + Type - + Host - + Device - + Control ET - + Read BT - + RS485 Unit ID - + ET Channel - + BT Channel - + AT Channel - + ET Y(x) - + BT Y(x) - + Async - + Change - + Gain - + Wiring - + Rate - + Raw - + ServerId: - + Password: - + Ratio - + Text - + Edge - + Line - + Color pattern - + dg - + Enter description - + Ramp Soak HH:MM<br>(1-4) - + Ramp Soak HH:MM<br>(5-8) - + Ramp/Soak Pattern - + WARNING - + Writing eeprom memory - + <u>Max life</u> 10,000 writes - + Infinite read life. - + After <u>writing</u> an adjustment,<br>never power down the pid<br>for the next 5 seconds <br>or the pid may never recover. - + Read operations manual - + NOTE: BT Thermocouple type is not stored in the Artisan settings - + Artisan uses 1 decimal point - + ET Thermocouple type - + BT Thermocouple type - + Ramp Soak (MM:SS)<br>(1-7) - + Ramp Soak (MM:SS)<br>(8-16) - + Pattern - + SV (7-0) - + Write - + P - + I - + D - + Artisan Fuji PXG uses MINUTES:SECONDS units in Ramp/Soaks - + Cycle - + SV - + Lookahead - + Manual - + Ramp/Soak - + Background - + SV Buttons - + SV Slider - + Unit - + ml - + Unit Weight - + g - + Kg - + l - + in - + out - + Moisture loss: %1% Organic loss: %2% - + Filter - + Emissivity - + ON - + OFF - + %1 to reach ET %2 - + %1 to reach BT %2 @@ -3567,17 +3567,17 @@ END - + XT Color - + XT - + current palette @@ -3623,52 +3623,52 @@ END Marker - + Circle - + Square - + Pentagon - + Diamond - + Star - + Hexagon 1 - + Hexagon 2 - + + - + x - + None @@ -4301,7 +4301,7 @@ Profile missing [CHARGE] or [DROP] - + Open Wheel Graph @@ -4471,7 +4471,7 @@ Profile missing [CHARGE] or [DROP] - + No profile found @@ -4592,935 +4592,935 @@ Continue? - + Alarm Config - + Alarms are not available for device None - + Switch Language - + Language successfully changed. Restart the application. - + Import K202 CSV - + K202 file loaded successfully - + Import K204 CSV - + K204 file loaded successfully - + Import HH506RA CSV - + HH506RA file loaded successfully - + Save Graph as PNG - + %1 size(%2,%3) saved - + Save Graph as PDF - + Save Graph as SVG - + %1 saved - + Invalid Wheel graph format - + Wheel Graph succesfully open - + Return the absolute value of x. - + Return the arc cosine (measured in radians) of x. - + Return the arc sine (measured in radians) of x. - + Return the arc tangent (measured in radians) of x. - + Return the cosine of x (measured in radians). - + Convert angle x from radians to degrees. - + Return e raised to the power of x. - + Return the logarithm of x to the given base. - + Return the base 10 logarithm of x. - + Return the minimum of x and y. - + Return the maximum of x and y. - + Return x**y (x to the power of y). - + Convert angle x from degrees to radians. - + Return the sine of x (measured in radians). - + Return the square root of x. - + Return the tangent of x (measured in radians). - + ET value - + BT value - + Extra #1 T1 value - + Extra #1 T2 value - + Extra #2 T1 value - + Extra #2 T2 value - + current background ET - + current background BT - + Yn holds values sampled in the actual interval if refering to ET/BT or extra channels from devices listed before, otherwise Yn hold values sampled in the previous interval - + MATHEMATICAL FUNCTIONS - + SYMBOLIC VARIABLES - + Symbolic Functions - + Save Palettes - + Palettes saved - + Invalid palettes file format - + Palettes loaded - + Load Palettes - + Alarms loaded - + Interpolation failed: no profile available - + Sound turned ON - + Sound turned OFF - + [ET target 1 = %1] [BT target 1 = %2] [ET target 2 = %3] [BT target 2 = %4] - + Event #%1 added - + Event #%1 deleted - + No events found - + Roast properties updated but profile not saved to disk - + Autosave ON. Prefix: %1 - + Autosave OFF - + xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) - + <b>Event</b> hide or show the corresponding slider - + <b>Action</b> Perform an action on slider release - + <b>Command</b> depends on the action type ('{}' is replaced by <i>value</i>*<i>factor</i> + <i>offset</i>) - + Serial Command: ASCII serial command or binary a2b_uu(serial command) - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) or wcoils(slaveId,register,&lt;bool&gt;) writes values to the registers in slaves specified by the given ids - + DTA Command: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating - + <b>Offset</b> added as offset to the slider value - + <b>Factor</b> multiplicator of the slider value - + Event custom buttons - + Event configuration saved - + Found empty event type box - + <b>Button Label</b> Enter \n to create labels with multiple lines. - + <b>Event Description</b> Description of the Event to be recorded. - + <b>Event type</b> Type of event to be recorded. - + <b>Event value</b> Value of event (1-100) to be recorded - + <b>Action</b> Perform an action at the time of the event - + <b>Documentation</b> depends on the action type ('{}' is replaced by the event value): - + Call Program: A program/script path (absolute or relative) - + Multiple Event: Adds events of other button numbers separated by a comma: 1,2,3, etc. - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) writes values to the registers in slaves specified by the given ids - + IO Command: set(n,0), set(n,1), toggle(n) to set Phidget IO digital output n - + <b>Button Visibility</b> Hides/shows individual button - + <b>Keyboard Shorcut: </b> [b] Hides/shows Extra Button Rows - + Phases changed to %1 default: %2 - + Background profile not found - + Background does not match number of labels - + Playback Aid set ON at %1 secs - + No profile background found - + Reading background profile... - + Phidget Temperature Sensor IR attached - + Phidget Temperature Sensor IR detached - + Phidget Temperature Sensor 4-input attached - + Phidget Temperature Sensor 4-input detached - + Phidget Bridge 4-input attached - + Phidget Bridge 4-input detached - + Phidget 1018 IO attached - + Phidget 1018 IO detached - + Yocto Thermocouple attached - + Yocto PT100 attached - + Not enough time points for an ET curviness of %1. Set curviness to %2 - + Designer Config - + Not enough time points for an BT curviness of %1. Set curviness to %2 - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + Incorrect time format. Please recheck %1 time - + Times need to be in ascending order. Please recheck %1 time - + Designer has been reset - + The MODBUS device corresponds to input channels - + 1 and 2.. The MODBUS_34 extra device adds - + input channels 3 and 4. Inputs with slave - + id set to 0 are turned off. Modbus function 3 - + 'read holding register' is the standard. - + Modbus function 4 triggers the use of 'read - + input register'. Input registers (fct 4) usually - + are from 30000-39999. Most devices hold data in - + 2 byte integer registers. A temperature of 145.2C - + is often sent as 1452. In that case you have to - + use the symbolic assignment 'x/10'. Few devices - + hold data as 4 byte floats in two registers. - + Tick the Float flag in this case. - + Serial Port Settings: %1, %2, %3, %4, %5, %6 - + External program - + Device not set - + PID to control ET set to %1 %2 ; PID to read BT set to %3 %4 - + Device set to %1. Now, check Serial Port settings - + Device set to %1. Now, chose serial port - + Device set to CENTER 305, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 309. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 303. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH506RA. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH806AU. Now, chose serial port - + Device set to %1 - + Device set to %1%2 - + Device set to %1. Now, chose Modbus serial port - + Device set to %1, which is equivalent to CENTER 302. Now, chose serial port - + Color of %1 set to %2 - + Save Wheel graph - + Wheel Graph saved - + Load Alarms - + Save Alarms - + <b>Status:</b> activate or deactive alarm - + <b>If Alarm:</b> alarm triggered only if the alarm with the given number was triggered before. Use 0 for no guard. - + <b>But Not:</b> alarm triggered only if the alarm with the given number was not triggered before. Use 0 for no guard. - + <b>From:</b> alarm only triggered after the given event - + <b>Time:</b> if not 00:00, alarm is triggered mm:ss after the event 'From' happend - + <b>Source:</b> the temperature source that is observed - + <b>Condition:</b> alarm is triggered if source rises above or below the specified temperature - + <b>Temp:</b> the speficied temperature limit - + <b>Action:</b> if all conditions are fulfilled the alarm triggeres the corresponding action - + <b>Description:</b> the text of the popup, the name of the program, the number of the event button or the new value of the slider - + <b>NOTE:</b> each alarm is only triggered once - + OFF - + CONTINUOUS CONTROL - + ON - + STANDBY MODE - + The rampsoak-mode tells how to start and end the ramp/soak - + Your rampsoak mode in this pid is: - + Mode = %1 - + Start to run from PV value: %1 - + End output status at the end of ramp/soak: %1 - + Output status while ramp/soak operation set to OFF: %1 - + Repeat Operation at the end: %1 - + Recomended Mode = 0 - + If you need to change it, change it now and come back later - + Use the Parameter Loader Software by Fuji if you need to - + Continue? - + Load PID Settings - + Save PID Settings - + Current sv = %1. Change now to sv = %2? - + Change svN - + Current pid = %1. Change now to pid =%2? - + Ramp Soak start-end mode - + Pattern changed to %1 - + Pattern did not changed - + Ramp/Soak was found ON! Turn it off before changing the pattern - + Ramp/Soak was found in Hold! Turn it off before changing the pattern - + Activate PID front buttons - + Remember SV memory has a finite life of ~10,000 writes. @@ -5528,72 +5528,72 @@ Proceed? - + RS ON - + RS OFF - + RS on HOLD - + PXG sv#%1 set to %2 - + PXR sv set to %1 - + SV%1 changed from %2 to %3) - + Unable to set sv%1 - + SV changed from %1 to %2 - + Unable to set sv - + Unable to set new sv - + Load Ramp/Soak Table - + Save Ramp/Soak Table - + PID turned on - + PID turned off @@ -5602,31 +5602,26 @@ Proceed? Hottop control turned off - - - Hottop control turned on - - Radio Button - + Meter - + PID - + TC4 - + Program @@ -5715,337 +5710,337 @@ Proceed? StatusBar - + Playback Aid set OFF - + Ready - + Decimal position successfully set to 1 - + Problem setting decimal position - + Problem setting thermocouple type - + setting autotune... - + Autotune successfully turned OFF - + Autotune successfully turned ON - + wait... - + PID OFF - + PID ON - + SV successfully set to %1 - + Empty SV box - + Unable to read SV - + Ramp/Soak operation cancelled - + No RX data - + RS ON - + Need to change pattern mode... - + Pattern has been changed. Wait 5 secs. - + Pattern could not be changed - + RampSoak could not be changed - + RS OFF - + RS successfully turned OFF - + setONOFFrampsoak(): Ramp Soak could not be set OFF - + getsegment(): problem reading ramp - + getsegment(): problem reading soak - + Reading Ramp/Soak %1 ... - + problem reading Ramp/Soak - + Finished reading Ramp/Soak val. - + Finished reading pid values - + %1 successfully sent to pid - + setpid(): There was a problem setting %1 - + Ramp/Soak successfully written - + Time Units successfully set to MM:SS - + Problem setting time units - + Thermocouple type successfully set - + SV%1 set to %2 - + Problem setting SV - + Cancelled svN change - + PID already using sv%1 - + setNsv(): bad response - + pid changed to %1 - + setNpid(): bad confirmation - + Cancelled pid change - + PID was already using pid %1 - + setNpid(): Unable to set pid %1 - + SV%1 successfully set to %2 - + setsv(): Unable to set SV - + pid #%1 successfully set to (%2,%3,%4) - + pid command failed. Bad data at pid%1 (8,8,8): (%2,%3,%4) - + sending commands for p%1 i%2 d%3 - + getallpid(): Unable to read pid values - + PID is using pid = %1 - + getallpid(): Unable to read current sv - + PID is using SV = %1 - + Ramp Soak could not be set OFF - + PID set to OFF - + PID set to ON - + Unable - + No data received - + Current pid = %1. Proceed with autotune command? - + Autotune cancelled - + UNABLE to set Autotune - + SV - + Ramp (MM:SS) - + Soak (MM:SS) - + Work in Progress @@ -6053,157 +6048,157 @@ Proceed? Tab - + Graph - + HUD - + Plotter - + Math - + UI - + General - + Notes - + Events - + Data - + Config - + Buttons - + Sliders - + Quantifiers - + Palettes - + Style - + Filter - + Espresso - + ET/BT - + Extra - + Modbus - + Scale - + Color - + Extra Devices - + Symb ET/BT - + Phidgets - + LCDs - + RS - + SV - + PID - + Set RS - + Ramp/Soak @@ -6211,335 +6206,340 @@ Proceed? Table - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL - + Time - + ET - + BT - + DeltaET - + DeltaBT - + CHARGE - + EVENT #%2 %3%4 - + Description - + Type - + Value - + Name - + Weight - + Label - + Action - + Documentation - + Visibility - + Color - + Text Color - + EVENT #%1 %2%3 - + Device - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Color 1 - + Color 2 - + Label 1 - + Label 2 - + y1(x) - + y2(x) - + LCD 1 - + LCD 2 - + Curve 1 - + Curve 2 - + Parent - + Width - + Opaqueness - + Delete Wheel - + Edit Labels - + Update Labels - + Properties - + Radius - + Starting angle - + Projection - + Text Size - + Color Pattern - + Status - + If Alarm - + But Not - + From - + Source - + Condition - + Temp - + Beep - + SV - + Ramp HH:MM - + Soak HH:MM + + + Nr + + Textbox @@ -6912,204 +6912,204 @@ Pungency - + <b>Label</b>= - + <b>Description </b>= - + <b>Type </b>= - + <b>Value </b>= - + <b>Documentation </b>= - + <b>Button# </b>= - + Save image using current graph size to a png format - + linear: linear interpolation cubic: 3rd order spline interpolation nearest: y value of the nearest point - + ON/OFF logs serial communication - + Automatic generated name = This text + date + time - + ON/OFF of automatic saving when pressing keyboard letter [a] - + Sets the directory to store batch profiles when using the letter [a] - + Allows to enter a description of the last event - + Add new extra Event button - + Delete the last extra Event button - + Show help - + Backup all palettes to a text file - + Restore all palettes from a text file - + Action Type - + Action String - + Aspect Ratio - + Example: 100 + 2*x - + Example: 100 + x - + Erases wheel parent hierarchy - + Sets graph hierarchy child->parent instead of parent->child - + Increase size of text in all the graph - + Decrease size of text in all the graph - + Decorative edge beween wheels - + Line thickness - + Line color - + Apply color pattern to whole graph - + Add new wheel - + Rotate graph 1 degree counter clockwise - + Rotate graph 1 degree clockwise - + Save graph to a text file.wg - + Sets Wheel graph to view mode - + open graph file.wg - + Close wheel graph editor - + Clear alarms table - + Interval diff --git a/translations/artisan_he.ts b/translations/artisan_he.ts index 333e8d54e..e0ec08d20 100644 --- a/translations/artisan_he.ts +++ b/translations/artisan_he.ts @@ -132,7 +132,7 @@ END ס.קירור - + Update עדכון @@ -142,92 +142,92 @@ END עזרה PID - + OK אישור - + Cancel ביטול - + Color צבע - + Plot - + Background רקע - + Virtual Device מכשיר וירטואלי - + Save Image שמור תמונה - + Help עזרה - + Info מידע - + Set קבע - + Defaults ברירת מחדל - + Order סדר - + Add הוסף - + Delete מחק - + in לפני - + out אחרי - + Search חיפוש - + Path נתיב @@ -242,492 +242,492 @@ END שחזר מ - + Save שמור - + Load טען - + Del מחק - + Align הצמד - + Up למעלה - + Down למטה - + Left שמאלה - + Right ימינה - + Reset איפוס - + Close סגירה - + Create צור - + Select בחר - + Grid רשת - + Title כותרת - + Y Label ציר Y - + X Label ציר X - + Drying Phase שלב היבוש - + Maillard Phase שלב המילארד - + Development Phase שלב ההתפתחות - + Cooling Phase שלב הקירור - + ET ט.ס - + BT ט.פ - + DeltaET ק.ש-ט.ס - + DeltaBT ק.ש-ט.פ - + Markers סמנים - + Text טקסט - + Watermarks סימן מיים - + C Lines - + Grey אפור - + LED - + B/W - + Reset Parents - + Reverse Hierarchy היפוך הירכיה - + + - + - - + Line Color צבע שורה - + < - + > - + Save File שמירת קובץ - + Save Img שמור תמונה - + View Mode מצב צפיה - + Open פתיחה - + Set Color קבע צבע - + All On הפעל כולם - + All Off כיבוי כולם - + Read Ra/So values - + RampSoak ON - + RampSoak OFF - + PID OFF כיבוי PID - + PID ON הפעלת PID - + Write SV כתוב SV - + SV Buttons ON כפתורי SV פעילים - + SV Buttons OFF כפתורי SV כבויים - + Read SV קרא SV - + Set p קבע P - + Set i קבע i - + Set d קבע d - + Autotune ON - + Autotune OFF - + Read PID Values קרא ערכי PID - + Read קרא - + Set ET PID to 1 decimal point - + Set BT PID to 1 decimal point - + Read RS values - + Write SV1 - + Write SV2 - + Write SV3 - + Write SV4 - + Write SV5 - + Write SV6 - + Write SV7 - + ON SV buttons - + OFF SV buttons - + Read SV (7-0) - + pid 1 - + pid 2 - + pid 3 - + pid 4 - + pid 5 - + pid 6 - + pid 7 - + Set ET PID to MM:SS time units - + Write כתוב - + Insert הוסף - + Clear נקה - + scan סרוק - + Write All כתוב הכל - + Write RS values - + Write SV (7-0) - + Read PIDs - + Write PIDs - + Apply - + On - + Off - + calc - + unit - + << - + >> @@ -735,202 +735,202 @@ END CheckBox - + Heavy FC פצ1 חזק - + Low FC פצ1 חלש - + Light Cut גוון בהיר - + Dark Cut גוון כהה - + Drops - + Oily שמנוני - + Uneven חוסר אחידות - + Tipping טיפפינג - + Scorching חריכה - + Divots - + DeltaET ק.ש-ט.ס - + DeltaBT ק.ש-ט.פ - + Smooth Spikes עדן קפיצות - + Drop Spikes בטל קפיצות - + Limits גבולות - + Projection חיזוי - + Show הצג - + Beep צפצוף - + Delete roast properties on RESET מחק הגדרות קלייה באיפוס - + Serial Log ON/OFF - + Autosave [a] שמירה אוטומטית [a] - + Lock Max נעל מקס - + Button לחצן - + Mini Editor עורך חלקי - + CHARGE טען - + DRY END ס.ייבוש - + FC START ת.פ.1 - + FC END ס.פ.1 - + SC START ת.פ.2 - + SC END ס.פ.2 - + DROP הוצאה - + COOL END ס.קירור - + Auto Adjusted התאמה אוטומטית - + Watermarks סימן מיים - + Background רקע - + Text טקסט - + Events שלבים - + Playback Aid עזרי פלייבק - + Time זמן - + Bar תיבה @@ -940,117 +940,117 @@ END מ\ד - + ETBTa - + Evaluation הערכה - + Characteristics מאפיינים - + ET ט.ס - + BT ט.פ - + Load alarms from profile טען התראות מפרופיל - + Auto CHARGE טעינה אוטומטית - + Auto DROP הוצאה אוטומטית - + Mark TP סמן נקודת סיבוב - + Phases LCDs צג שלביות - + Auto DRY ייבוש אוטומטי - + Auto FCs ת.פ.1 אוטומטי - + Decimal Places מיקום עשרוני - + Modbus Port - + Smooth2 - + Start PID on CHARGE - + Load Ramp/Soak table from profile - + Control Button - + Ratiometric - + Align FCs - + /min - + Alarm Popups - + Lock @@ -1078,122 +1078,122 @@ END מאוורר - + linear לינארי - + newton ניוטון - + metrics מטרי - + thermal טרמי - + cubic מרובע - + nearest הקרוב - + DeltaET ק.ש-ט.ס - + DeltaBT ק.ש-ט.פ - + ET ט.ס - + BT ט.פ - + g גרם - + Kg ק"ג - + ml מיל' - + l ליטר - + upper right ימני עליון - + upper left שמאלי עליון - + lower left שמאלי תחתון - + lower right ימני תחתון - + right ימין - + center left שמאלי אמצעי - + center right ימיני אמצעי - + lower center אמצע תחתון - + upper center אמצע עליון - + center אמצע @@ -1203,357 +1203,357 @@ END 30ש - + 1 minute 1דקה - + 2 minute 2דקות - + 3 minute 3דקות - + 4 minute 4דקות - + 5 minute 5דקות - + solid מלא - + dashed מקוקו - + dashed-dot מקוקו-נק' - + dotted נק' - + None ללא - + Event #0 שלב #0 - + Event #%1 שלב #%1 - + lb פאונד - + liter ליטר - + gallon גלון - + quart קארט - + pint פינט - + cup כוס - + cm^3 - + Type סוג - + Value ערך - + Serial Command פקודה סיראלית - + Modbus Command - + DTA Command - + Call Program קרא לתוכנית - + OFF הפסק - + ON הפעל - + Multiple Event אירוע משולב - + SV Commands - + Ramp Commands - + little-endian - + grey אפור - + Dark Grey אפור כהה - + Slate Grey - + Light Gray אפור בהיר - + Black שחור - + White לבן - + Transparent שקוף - + Flat שטוח - + Perpendicular היקף - + Radial - + START הקלט - + CHARGE טען - + TP נק' סיבוב - + DRY END ס.ייבוש - + FC START ת.פ.1 - + FC END ס.פ.1 - + SC START ת.פ.2 - + SC END ס.פ.2 - + DROP הוצאה - + COOL קירור - + below מתחת - + above למעלה - + Pop Up - + Event Button לחצן שלב - + Slider סליידר - + classic קלאסי - + xkcd - + Default ברירת מחדל - + Humor הומוריסטי - + Comic קומי - + DRY ייבוש - + FCs ת.פ.1 - + FCe ס.פ.1 - + SCs ת.פ.2 - + SCe ס.פ.2 - + COOL END ס.קירור - + IO Command - + Hottop Heater - + Hottop Fan - + Hottop Command @@ -1624,12 +1624,12 @@ END ערוך טקסט - + profiles פרופילים - + other אחר @@ -1637,17 +1637,17 @@ END Error Message - + Exception: חריג: - + Value Error: שגיאת ערך: - + IO Error: שגיאה: @@ -1657,137 +1657,137 @@ END שגיאה - + Univariate: no profile data available פרופיל לא זמין - + Polyfit: no profile data available פרופיל לא זמין - + Unable to move CHARGE to a value that does not exist לא ניתן להזיז טעינה לערך שאינו קיים - + Modbus Error: - + Serial Exception: - + F80h Error - + CRC16 data corruption ERROR. TX does not match RX. Check wiring - + No RX data received - + DTAcommand(): %1 bytes received but 15 needed - + Unable to open serial port לא ניתן לפתוח פורט סיראלי - + HH806Wtemperature(): Unable to initiate device - + HH506RAGetID: %1 bytes received but 5 needed - + HH506RAtemperature(): Unable to get id from HH506RA device - + HH506RAtemperature(): %1 bytes received but 14 needed - + CENTER302temperature(): %1 bytes received but 7 needed - + CENTER303temperature(): %1 bytes received but 8 needed - + CENTER306temperature(): %1 bytes received but 10 needed - + CENTER309temperature(): %1 bytes received but 45 needed - + Arduino could not set channels - + Arduino could not set temperature unit - + Serial Exception: invalid comm port פורט לא זמין - + Serial Exception: timeout - + Segment values could not be written into PID - + RampSoak could not be changed - + pid.readoneword(): %1 RX bytes received (7 needed) for unit ID=%2 - + MS6514temperature(): %1 bytes received but 16 needed - + HH806AUtemperature(): %1 bytes received but 16 needed @@ -1797,7 +1797,7 @@ END - + Arduino could not set filters @@ -1858,147 +1858,147 @@ END Form Caption - + Extras תוספות - + Roast Properties הגדרות קלייה - + Artisan Platform פלטפורמת ארטיסן - + Settings Viewer מצב הגדרות - + Serial Log רישום סיריאל - + Error Log שגיאת רישום - + Message History הסטוריית הודעות - + Keyboard Autosave [a] - + AutoSave Path נתיב שמירה אוטו - + Axes ציר מספרים - + Roast Calculator מחשבון קלייה - + Events שלבים - + Roast Phases שלבי קלייה - + Cup Profile פרופיל טעמים - + Profile Background פרופיל רקע - + Statistics סטטיסטיקה - + Designer Config קינפוג עיצוב פרופיל - + Manual Temperature Logger רישום טמפ' ידני - + Serial Ports Configuration קינפוג פורטים - + Device Assignment בחירת מכשיר - + Colors צבעים - + Wheel Graph Editor עורך גלגל גרפי - + Alarms התראות - + Fuji PXR PID Control - + Fuji PXG PID Control - + Delta DTA PID Control - + Arduino Control - + Volume Calculator - + Tare Setup @@ -2006,257 +2006,257 @@ END GroupBox - + Curves עקומים - + LCDs תצוגות - + HUD - + Input Filters הזן פילטר - + Interpolate אינטרפולציה - + Univariate - + Polyfit - + Appearance תצוגה - + Resolution רזולוציה - + Sound סאונד - + Times זמנים - + Time Axis ציר זמנים - + Temperature Axis ציר טמפ' - + DeltaBT/DeltaET Axis ציר ק.ש.ט - + Legend Location מיקום מקרא - + Grid רשת - + Rate of Change קצב שינוי - + Temperature Conversion המר טמפ' - + Weight Conversion המר משקל - + Volume Conversion המר ווליום - + Event Types סוג שלב - + Default Buttons לחצני ברירת מחדל - + Management ניהול - + Evaluation הערכה - + Display תצוגה - + Initial Settings הגדרות ראשונות - + Input 1 קלט1 - + Input 2 קלט2 - + Input 3 קלט3 - + Input 4 קלט4 - + PID - + Arduino TC4 - + External Program תוכנית חיצונית - + Symbolic Assignments - + Timer LCD צג טיימר - + ET LCD צג טמפ' סביבה - + BT LCD צג טמפ פולים - + DeltaET LCD צג קצב ET - + DeltaBT LCD צג קצב BT - + Extra Devices / PID SV LCD - + Label Properties הגדרות תגיות - + Look מראה - + Network - + p-i-d - + Set Value - + Phidget IO - + Phidgets 1045 - + Phidgets 1046 RTD - + WebLCDs - + Phidgets 1048/1051 - + Sampling @@ -2447,12 +2447,12 @@ END Label - + ET ט.ס - + BT ט.פ @@ -2467,42 +2467,42 @@ END ק.ש-ט.פ - + at - + CHARGE טען - + DRY END ס.ייבוש - + FC START ת.פ.1 - + FC END ס.פ.1 - + SC START ת.פ.2 - + SC END ס.פ.2 - + DROP הוצאה @@ -2512,7 +2512,7 @@ END שלב - + Time זמן @@ -2587,737 +2587,737 @@ END - + City - + City+ - + Full City - + Full City+ - + Light French - + French - + at %1 - + %1 after FCs - + %1 after FCe - + ET - BT = %1 - + ET - BT = %1%2 - + ET Target 1 - + BT Target 1 - + ET Target 2 - + BT Target 2 - + Mode מצב - + ET p-i-d 1 - + Smooth Deltas עדן ק.ש.ט - + Smooth Curves עדן טמפ - + min מינ - + max מקס - + Y(x) - + Start הקלט - + End סיים - + COOL קירור - + Title כותרת - + Date תאריך - + Beans פולים - + Weight משקל - + in לפני - + out אחרי - + % - + Volume ווליום - + Density צפיפות - + per - + Bean Size גודל פולים - + mm - + Whole Color - + Ground Color - + Moisture Greens תנאי אכסון - + % - + Ambient Conditions תנאי סביבה - + Roaster קולה - + Operator מפעיל - + Roasting Notes רשמי קלייה - + Cupping Notes רשמי טעם - + Ambient Source - + (%1 g/l) - + Number of errors found %1 - + Max מקס - + Min מינ - + Rotation סיבוב - + Initial Max מקס ראשוני - + Step צעד - + Style סטייל - + Width רוחב - + Opaqueness - + Enter two times along profile - + Start (00:00) - + End (00:00) - + Fahrenheit פרנהייט - + Celsius צלזיוס - + Time syntax error. Time not valid - + Error: End time smaller than Start time - + Best approximation was made from %1 to %2 - + No profile found - + Bars תיבות - + Color צבע - + Marker סמן - + Thickness עובי - + Opacity אטימות - + Size גודל - + Max buttons per row מספר לחצנים מקס בשורה - + Color Pattern תבנית צבע - + palette # פלטה - + Event שלב - + Action פעולה - + Command פקודה - + Offset קיזוז - + Factor פקטור - + Drying ייבוש - + Maillard מילארד - + Development התפתחות - + Default ברירת מחדל - + Aspect Ratio - + ET Color צבע ט.ס - + BT Color צבע ט.פ - + DeltaET Color צבע ק.ש-ט.ס - + DeltaBT Color צבע ק.ש-ט.פ - + Text Warning אזהרת טקסט - + sec שניות - + Cooling קירור - + Curviness עקומים - + Events Playback נגן שלבים - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Settings for non-Modbus devices - + Slave - + Register - + Float - + Function - + Device מכשיר - + Control ET בקר ט.ס - + Read BT קרא ט.פ - + Type סוג - + RS485 Unit ID - + ET Channel ערוץ ט.ס - + BT Channel ערוץ ט.פ - + AT Channel - + ET Y(x) - + BT Y(x) - + Ratio יחס - + Text טקסט - + Edge קצה - + Line שורה - + Color pattern תבנית צבע - + dg - + Enter description תיאור שלב - + Ramp Soak HH:MM<br>(1-4) - + Ramp Soak HH:MM<br>(5-8) - + Ramp/Soak Pattern - + WARNING אזהרה - + Writing eeprom memory - + <u>Max life</u> 10,000 writes - + Infinite read life. - + After <u>writing</u> an adjustment,<br>never power down the pid<br>for the next 5 seconds <br>or the pid may never recover. - + Read operations manual - + ET Thermocouple type סוג פרוב ט.ס - + BT Thermocouple type סוג פרוב ט.פ - + NOTE: BT Thermocouple type is not stored in the Artisan settings פרוב ט.פ אינו נשמר בתוכנה - + Artisan uses 1 decimal point - + Ramp Soak (MM:SS)<br>(1-7) - + Ramp Soak (MM:SS)<br>(8-16) - + Pattern תבנית - + SV (7-0) - + Write כתוב - + P - + I - + D - + Artisan Fuji PXG uses MINUTES:SECONDS units in Ramp/Soaks - + SV - + Path Effects - + Font פונט @@ -3347,12 +3347,12 @@ END החל הקלטה - + Prefix - + Source מקור @@ -3362,77 +3362,77 @@ END - + Window - + Cycle - + Lookahead - + Manual - + Ramp/Soak - + Background רקע - + SV Buttons - + SV Slider - + Coarse - + Host - + Port - + HUD Button - + Raw - + ServerId: - + Password: @@ -3467,12 +3467,12 @@ END - + Moisture Roasted - + Density in: %1 g/l => Density out: %2 g/l @@ -3497,112 +3497,112 @@ END - + <b>%1</b> %2/sec, <b>%3</b> %4/min - + Async - + Change - + Gain - + Rate - + Wiring - + Delta Span - + Unit - + ml מיל' - + Unit Weight - + g גרם - + Kg ק"ג - + l ליטר - + in לפני - + out אחרי - + Moisture loss: %1% Organic loss: %2% - + Filter - + Emissivity - + ON הפעל - + OFF - + %1 to reach ET %2 - + %1 to reach BT %2 @@ -3612,17 +3612,17 @@ END - + XT Color - + XT - + current palette @@ -3668,52 +3668,52 @@ END Marker - + Circle עיגול - + Square מרובע - + Pentagon מחומש - + Diamond יהלום - + Star כוכב - + Hexagon 1 - + Hexagon 2 - + + - + x - + None ללא @@ -4330,7 +4330,7 @@ Profile missing [CHARGE] or [DROP] פרופיל חדש נוצר - + Open Wheel Graph פתיחת גלגל גרפי @@ -4485,7 +4485,7 @@ Profile missing [CHARGE] or [DROP] - + No profile found @@ -4591,725 +4591,725 @@ Continue? - + Alarm Config - + Alarms are not available for device None - + Switch Language - + Language successfully changed. Restart the application. - + Import K202 CSV - + K202 file loaded successfully - + Import K204 CSV - + K204 file loaded successfully - + Import HH506RA CSV - + HH506RA file loaded successfully - + Save Graph as PNG - + %1 size(%2,%3) saved - + Save Graph as PDF - + Save Graph as SVG - + %1 saved - + Invalid Wheel graph format - + Wheel Graph succesfully open - + Return the absolute value of x. - + Return the arc cosine (measured in radians) of x. - + Return the arc sine (measured in radians) of x. - + Return the arc tangent (measured in radians) of x. - + Return the cosine of x (measured in radians). - + Convert angle x from radians to degrees. - + Return e raised to the power of x. - + Return the logarithm of x to the given base. - + Return the base 10 logarithm of x. - + Return x**y (x to the power of y). - + Convert angle x from degrees to radians. - + Return the sine of x (measured in radians). - + Return the square root of x. - + Return the tangent of x (measured in radians). - + MATHEMATICAL FUNCTIONS - + SYMBOLIC VARIABLES - + Symbolic Functions - + Save Palettes - + Palettes saved - + Invalid palettes file format - + Palettes loaded - + Load Palettes - + Alarms loaded - + Interpolation failed: no profile available - + Sound turned ON - + Sound turned OFF - + [ET target 1 = %1] [BT target 1 = %2] [ET target 2 = %3] [BT target 2 = %4] - + Event #%1 added - + Event #%1 deleted - + No events found - + Roast properties updated but profile not saved to disk - + Autosave ON. Prefix: %1 - + Autosave OFF - + xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) - + <b>Event</b> hide or show the corresponding slider - + <b>Action</b> Perform an action on slider release - + <b>Command</b> depends on the action type ('{}' is replaced by <i>value</i>*<i>factor</i> + <i>offset</i>) - + Serial Command: ASCII serial command or binary a2b_uu(serial command) - + DTA Command: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating - + <b>Offset</b> added as offset to the slider value - + <b>Factor</b> multiplicator of the slider value - + Event custom buttons - + Event configuration saved - + Found empty event type box - + <b>Button Label</b> Enter \n to create labels with multiple lines. - + <b>Event Description</b> Description of the Event to be recorded. - + <b>Event type</b> Type of event to be recorded. - + <b>Action</b> Perform an action at the time of the event - + <b>Documentation</b> depends on the action type ('{}' is replaced by the event value): - + Call Program: A program/script path (absolute or relative) - + Multiple Event: Adds events of other button numbers separated by a comma: 1,2,3, etc. - + <b>Button Visibility</b> Hides/shows individual button - + <b>Keyboard Shorcut: </b> [b] Hides/shows Extra Button Rows - + Phases changed to %1 default: %2 - + Background profile not found - + Background does not match number of labels - + Playback Aid set ON at %1 secs - + No profile background found - + Reading background profile... - + Not enough time points for an ET curviness of %1. Set curviness to %2 - + Designer Config קינפוג עיצוב פרופיל - + Not enough time points for an BT curviness of %1. Set curviness to %2 - + CHARGE - + DRY END - + FC START ת.פ.1 - + FC END ס.פ.1 - + SC START ת.פ.2 - + SC END ס.פ.2 - + DROP הוצאה - + Incorrect time format. Please recheck %1 time - + Times need to be in ascending order. Please recheck %1 time - + Designer has been reset - + Tick the Float flag in this case. - + Serial Port Settings: %1, %2, %3, %4, %5, %6 - + External program - + Device not set - + PID to control ET set to %1 %2 ; PID to read BT set to %3 %4 - + Device set to %1. Now, check Serial Port settings - + Device set to %1. Now, chose serial port - + Device set to CENTER 305, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 309. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 303. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH506RA. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH806AU. Now, chose serial port - + Device set to %1 - + Device set to %1%2 - + Device set to %1, which is equivalent to CENTER 302. Now, chose serial port - + Color of %1 set to %2 - + Save Wheel graph - + Wheel Graph saved - + Load Alarms - + Save Alarms - + <b>Status:</b> activate or deactive alarm - + <b>If Alarm:</b> alarm triggered only if the alarm with the given number was triggered before. Use 0 for no guard. - + <b>From:</b> alarm only triggered after the given event - + <b>Time:</b> if not 00:00, alarm is triggered mm:ss after the event 'From' happend - + <b>Source:</b> the temperature source that is observed - + <b>Condition:</b> alarm is triggered if source rises above or below the specified temperature - + <b>Temp:</b> the speficied temperature limit - + <b>Action:</b> if all conditions are fulfilled the alarm triggeres the corresponding action - + <b>NOTE:</b> each alarm is only triggered once - + OFF - + CONTINUOUS CONTROL - + ON הפעל - + STANDBY MODE - + The rampsoak-mode tells how to start and end the ramp/soak - + Your rampsoak mode in this pid is: - + Mode = %1 - + Start to run from PV value: %1 - + End output status at the end of ramp/soak: %1 - + Output status while ramp/soak operation set to OFF: %1 - + Repeat Operation at the end: %1 - + Recomended Mode = 0 - + If you need to change it, change it now and come back later - + Use the Parameter Loader Software by Fuji if you need to - + Continue? - + Current sv = %1. Change now to sv = %2? - + Change svN - + Current pid = %1. Change now to pid =%2? - + Ramp Soak start-end mode - + Pattern changed to %1 - + Pattern did not changed - + Ramp/Soak was found ON! Turn it off before changing the pattern - + Ramp/Soak was found in Hold! Turn it off before changing the pattern - + Activate PID front buttons - + Remember SV memory has a finite life of ~10,000 writes. @@ -5317,72 +5317,72 @@ Proceed? - + RS ON - + RS OFF - + RS on HOLD - + PXG sv#%1 set to %2 - + PXR sv set to %1 - + SV%1 changed from %2 to %3) - + Unable to set sv%1 - + SV changed from %1 to %2 - + Unable to set sv - + Unable to set new sv - + Phidget Temperature Sensor 4-input attached - + Phidget Bridge 4-input attached - + Device set to %1. Now, chose Modbus serial port - + <b>But Not:</b> alarm triggered only if the alarm with the given number was not triggered before. Use 0 for no guard. @@ -5398,17 +5398,17 @@ Continue? - + <b>Description:</b> the text of the popup, the name of the program, the number of the event button or the new value of the slider - + Load PID Settings - + Save PID Settings @@ -5428,12 +5428,12 @@ Continue? - + current background ET - + current background BT @@ -5448,27 +5448,27 @@ Continue? - + Phidget 1018 IO attached - + Load Ramp/Soak Table - + Save Ramp/Soak Table - + PID turned on - + PID turned off @@ -5478,72 +5478,72 @@ Continue? - + Return the minimum of x and y. - + Return the maximum of x and y. - + The MODBUS device corresponds to input channels - + 1 and 2.. The MODBUS_34 extra device adds - + input channels 3 and 4. Inputs with slave - + id set to 0 are turned off. Modbus function 3 - + 'read holding register' is the standard. - + Modbus function 4 triggers the use of 'read - + 2 byte integer registers. A temperature of 145.2C - + is often sent as 1452. In that case you have to - + use the symbolic assignment 'x/10'. Few devices - + hold data as 4 byte floats in two registers. - + Yocto Thermocouple attached - + Yocto PT100 attached @@ -5553,92 +5553,92 @@ Continue? - + Phidget Temperature Sensor IR attached - + input register'. Input registers (fct 4) usually - + are from 30000-39999. Most devices hold data in - + IO Command: set(n,0), set(n,1), toggle(n) to set Phidget IO digital output n - + ET value - + BT value - + Extra #1 T1 value - + Extra #1 T2 value - + Extra #2 T1 value - + Extra #2 T2 value - + Yn holds values sampled in the actual interval if refering to ET/BT or extra channels from devices listed before, otherwise Yn hold values sampled in the previous interval - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) writes values to the registers in slaves specified by the given ids - + <b>Event value</b> Value of event (1-100) to be recorded - + Phidget Temperature Sensor IR detached - + Phidget Temperature Sensor 4-input detached - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) or wcoils(slaveId,register,&lt;bool&gt;) writes values to the registers in slaves specified by the given ids - + Phidget Bridge 4-input detached - + Phidget 1018 IO detached @@ -5647,31 +5647,26 @@ Continue? Hottop control turned off - - - Hottop control turned on - - Radio Button - + Meter - + PID - + Program - + TC4 @@ -5760,337 +5755,337 @@ Continue? StatusBar - + Playback Aid set OFF - + Ready - + Decimal position successfully set to 1 - + Problem setting decimal position - + Problem setting thermocouple type - + setting autotune... - + Autotune successfully turned OFF - + Autotune successfully turned ON - + wait... - + PID OFF כיבוי PID - + PID ON הפעלת PID - + SV successfully set to %1 - + Empty SV box - + Unable to read SV - + Ramp/Soak operation cancelled - + No RX data - + RS ON - + Need to change pattern mode... - + Pattern has been changed. Wait 5 secs. - + Pattern could not be changed - + RampSoak could not be changed - + RS OFF - + RS successfully turned OFF - + setONOFFrampsoak(): Ramp Soak could not be set OFF - + getsegment(): problem reading ramp - + getsegment(): problem reading soak - + Finished reading Ramp/Soak val. - + %1 successfully sent to pid - + setpid(): There was a problem setting %1 - + Ramp/Soak successfully written - + Time Units successfully set to MM:SS - + Problem setting time units - + Thermocouple type successfully set - + SV%1 set to %2 - + Problem setting SV - + Cancelled svN change - + PID already using sv%1 - + setNsv(): bad response - + pid changed to %1 - + setNpid(): bad confirmation - + Cancelled pid change - + PID was already using pid %1 - + setNpid(): Unable to set pid %1 - + SV%1 successfully set to %2 - + setsv(): Unable to set SV - + pid #%1 successfully set to (%2,%3,%4) - + pid command failed. Bad data at pid%1 (8,8,8): (%2,%3,%4) - + sending commands for p%1 i%2 d%3 - + getallpid(): Unable to read pid values - + PID is using pid = %1 - + getallpid(): Unable to read current sv - + PID is using SV = %1 - + Ramp Soak could not be set OFF - + PID set to OFF - + PID set to ON - + Unable - + No data received - + Reading Ramp/Soak %1 ... - + problem reading Ramp/Soak - + Current pid = %1. Proceed with autotune command? - + Autotune cancelled - + UNABLE to set Autotune - + SV - + Ramp (MM:SS) - + Soak (MM:SS) - + Work in Progress - + Finished reading pid values @@ -6098,157 +6093,157 @@ Continue? Tab - + HUD - + Plotter - + Math - + UI - + General כללי - + Notes רשמים - + Events שלבים - + Data נתונים - + Config קונפיגורציה - + Buttons לחצנים - + Sliders סליידר - + Palettes פלטה - + Style סטייל - + ET/BT ט.ס\ט.פ - + Extra תוספות - + Modbus - + Scale משקל - + Extra Devices מכשירים נוספים - + Symb ET/BT - + Graph - + LCDs תצוגות - + RS - + SV - + PID - + Set RS - + Color צבע - + Quantifiers - + Ramp/Soak - + Phidgets - + Filter - + Espresso @@ -6256,37 +6251,37 @@ Continue? Table - + DRY END ס.יבוש - + FC START ת.פ.1 - + FC END ס.פ.1 - + SC START ת.פ.2 - + SC END ס.פ.2 - + DROP הוצאה - + COOL קירור @@ -6296,12 +6291,12 @@ Continue? זמן בפועל - + ET ט.ס - + BT ט.פ @@ -6316,290 +6311,295 @@ Continue? ק.ש-ט.פ - + EVENT #%2 %3%4 - + Time זמן - + Description תיאור - + Type סוג - + Value ערך - + Label תג - + Action פעולה - + Documentation מסכמכי תוכנה - + Visibility נראות - + Color צבע - + Text Color צבע טקסט - + Device מכשיר - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Color 1 - + Color 2 - + Label 1 - + Label 2 - + y1(x) - + y2(x) - + LCD 1 - + LCD 2 - + Curve 1 - + Curve 2 - + Parent - + Width רוחב - + Opaqueness - + Delete Wheel מחק גלגל - + Edit Labels ערוך תגיות - + Update Labels עדכן תגיות - + Properties מאפיינים - + Radius רדיוס - + Starting angle זווית התחלתית - + Projection חיזוי - + Text Size גודל טקסט - + Color Pattern תבנית צבע - + Status סטאטוס - + If Alarm - + From מ - + Source מקור - + Condition מצב - + Temp טמפ - + SV - + Ramp HH:MM - + Soak HH:MM - + CHARGE טעינה - + But Not - + DeltaET ק.ש-ט.ס - + DeltaBT ק.ש-ט.פ - + EVENT #%1 %2%3 - + Beep צפצוף - + Name - + Weight משקל + + + Nr + + Textbox @@ -6972,204 +6972,204 @@ Pungency עדכן שלבים - + <b>Label</b>= - + <b>Description </b>= - + <b>Type </b>= - + <b>Value </b>= - + <b>Documentation </b>= - + <b>Button# </b>= - + Save image using current graph size to a png format - + linear: linear interpolation cubic: 3rd order spline interpolation nearest: y value of the nearest point - + ON/OFF logs serial communication - + Automatic generated name = This text + date + time - + ON/OFF of automatic saving when pressing keyboard letter [a] - + Sets the directory to store batch profiles when using the letter [a] - + Allows to enter a description of the last event - + Add new extra Event button הוסף לחצן שלב חדש - + Delete the last extra Event button מחק לחצן אחרון - + Show help הראה עזרה - + Backup all palettes to a text file - + Restore all palettes from a text file - + Action Type סוג פעולה - + Action String - + Aspect Ratio - + Example: 100 + 2*x - + Example: 100 + x - + Erases wheel parent hierarchy - + Sets graph hierarchy child->parent instead of parent->child - + Increase size of text in all the graph - + Decrease size of text in all the graph - + Decorative edge beween wheels - + Line thickness - + Line color - + Apply color pattern to whole graph - + Add new wheel - + Rotate graph 1 degree counter clockwise - + Rotate graph 1 degree clockwise - + Save graph to a text file.wg - + Sets Wheel graph to view mode - + open graph file.wg - + Close wheel graph editor - + Clear alarms table - + Interval diff --git a/translations/artisan_hu.ts b/translations/artisan_hu.ts index 41f20b079..546e94921 100644 --- a/translations/artisan_hu.ts +++ b/translations/artisan_hu.ts @@ -132,587 +132,587 @@ END - + Update - + OK - + Cancel - + Color - + Plot - + Background - + Virtual Device - + Save Image - + Help - + Info - + Set - + Defaults - + Order - + Add - + Delete - + in - + out - + scan - + Search - + Path - + Save - + Load - + Apply - + Del - + Align - + Up - + Down - + Left - + Right - + Reset - + Close - + Create - + Select - + Grid - + Title - + Y Label - + X Label - + Drying Phase - + Maillard Phase - + Development Phase - + Cooling Phase - + ET - + BT - + DeltaET - + DeltaBT - + Markers - + Text - + Watermarks - + C Lines - + Grey - + LED - + B/W - + Reset Parents - + Reverse Hierarchy - + + - + - - + Line Color - + < - + > - + Save File - + Save Img - + View Mode - + Open - + Set Color - + All On - + All Off - + Insert - + Clear - + Read Ra/So values - + RampSoak ON - + RampSoak OFF - + PID OFF - + PID ON - + Write SV - + SV Buttons ON - + SV Buttons OFF - + Read SV - + Set p - + Set i - + Set d - + Autotune ON - + Autotune OFF - + Read PID Values - + Read - + Set ET PID to 1 decimal point - + Set BT PID to 1 decimal point - + Write All - + Read RS values - + Write RS values - + Write SV1 - + Write SV2 - + Write SV3 - + Write SV4 - + Write SV5 - + Write SV6 - + Write SV7 - + ON SV buttons - + OFF SV buttons - + Read SV (7-0) - + Write SV (7-0) - + pid 1 - + pid 2 - + pid 3 - + pid 4 - + pid 5 - + pid 6 - + pid 7 - + Read PIDs - + Write PIDs - + Set ET PID to MM:SS time units - + On - + Off - + Write - + calc - + unit - + << - + >> @@ -720,317 +720,317 @@ END CheckBox - + Heavy FC - + Low FC - + Light Cut - + Dark Cut - + Drops - + Oily - + Uneven - + Tipping - + Scorching - + Divots - + DeltaET - + DeltaBT - + Smooth Spikes - + Smooth2 - + Drop Spikes - + Limits - + Projection - + Decimal Places - + Show - + Beep - + Delete roast properties on RESET - + Serial Log ON/OFF - + Autosave [a] - + Lock Max - + Button - + Mini Editor - + Auto CHARGE - + Auto DROP - + Mark TP - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL END - + Auto Adjusted - + Watermarks - + Phases LCDs - + Auto DRY - + Auto FCs - + Background - + Text - + Events - + Playback Aid - + Time - + Bar - + ETBTa - + Evaluation - + Characteristics - + ET - + BT - + Modbus Port - + Control Button - + Ratiometric - + Load alarms from profile - + Start PID on CHARGE - + Load Ramp/Soak table from profile - + Align FCs - + /min - + Alarm Popups - + Lock @@ -1058,477 +1058,477 @@ END - + linear - + newton - + metrics - + thermal - + classic - + xkcd - + Default - + Humor - + Comic - + cubic - + nearest - + DeltaET - + DeltaBT - + ET - + BT - + g - + Kg - + ml - + l - + upper right - + upper left - + lower left - + lower right - + right - + center left - + center right - + lower center - + upper center - + center - + 1 minute - + 2 minute - + 3 minute - + 4 minute - + 5 minute - + solid - + dashed - + dashed-dot - + dotted - + None - + Event #0 - + Event #%1 - + lb - + liter - + gallon - + quart - + pint - + cup - + cm^3 - + Type - + Value - + Serial Command - + Modbus Command - + DTA Command - + Call Program - + OFF - + ON - + Multiple Event - + SV Commands - + Ramp Commands - + little-endian - + grey - + Dark Grey - + Slate Grey - + Light Gray - + Black - + White - + Transparent - + Flat - + Perpendicular - + Radial - + START - + CHARGE - + TP - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL - + below - + above - + Pop Up - + Event Button - + Slider - + DRY - + FCs - + FCe - + SCs - + SCe - + COOL END - + IO Command - + Hottop Heater - + Hottop Fan - + Hottop Command @@ -1594,12 +1594,12 @@ END Directory - + profiles - + other @@ -1607,12 +1607,12 @@ END Error Message - + Exception: - + Value Error: @@ -1622,7 +1622,7 @@ END - + IO Error: @@ -1632,142 +1632,142 @@ END - + Univariate: no profile data available - + Polyfit: no profile data available - + Unable to move CHARGE to a value that does not exist - + Modbus Error: - + Serial Exception: - + F80h Error - + CRC16 data corruption ERROR. TX does not match RX. Check wiring - + No RX data received - + DTAcommand(): %1 bytes received but 15 needed - + Unable to open serial port - + MS6514temperature(): %1 bytes received but 16 needed - + HH806AUtemperature(): %1 bytes received but 16 needed - + HH806Wtemperature(): Unable to initiate device - + HH506RAGetID: %1 bytes received but 5 needed - + HH506RAtemperature(): Unable to get id from HH506RA device - + HH506RAtemperature(): %1 bytes received but 14 needed - + CENTER302temperature(): %1 bytes received but 7 needed - + CENTER303temperature(): %1 bytes received but 8 needed - + CENTER306temperature(): %1 bytes received but 10 needed - + CENTER309temperature(): %1 bytes received but 45 needed - + Arduino could not set channels - + Arduino could not set temperature unit - + Serial Exception: invalid comm port - + Serial Exception: timeout - + Segment values could not be written into PID - + RampSoak could not be changed - + pid.readoneword(): %1 RX bytes received (7 needed) for unit ID=%2 - + Arduino could not set filters @@ -1828,147 +1828,147 @@ END Form Caption - + Extras - + Roast Properties - + Artisan Platform - + Settings Viewer - + Serial Log - + Error Log - + Message History - + Keyboard Autosave [a] - + AutoSave Path - + Axes - + Roast Calculator - + Events - + Roast Phases - + Cup Profile - + Profile Background - + Statistics - + Designer Config - + Manual Temperature Logger - + Serial Ports Configuration - + Device Assignment - + Colors - + Wheel Graph Editor - + Alarms - + Fuji PXR PID Control - + Fuji PXG PID Control - + Arduino Control - + Delta DTA PID Control - + Volume Calculator - + Tare Setup @@ -1976,257 +1976,257 @@ END GroupBox - + Curves - + LCDs - + HUD - + Input Filters - + Look - + Interpolate - + Univariate - + Polyfit - + Appearance - + Resolution - + Sound - + Times - + Time Axis - + Temperature Axis - + DeltaBT/DeltaET Axis - + Legend Location - + Grid - + Rate of Change - + Temperature Conversion - + Weight Conversion - + Volume Conversion - + Event Types - + Default Buttons - + Management - + Evaluation - + Display - + Initial Settings - + Input 1 - + Input 2 - + Input 3 - + Input 4 - + Phidget IO - + Network - + PID - + Arduino TC4 - + External Program - + Symbolic Assignments - + Timer LCD - + ET LCD - + BT LCD - + DeltaET LCD - + DeltaBT LCD - + Extra Devices / PID SV LCD - + Label Properties - + p-i-d - + Set Value - + Phidgets 1045 - + Phidgets 1046 RTD - + WebLCDs - + Phidgets 1048/1051 - + Sampling @@ -2412,12 +2412,12 @@ END Label - + ET - + BT @@ -2432,47 +2432,47 @@ END - + at - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL @@ -2482,7 +2482,7 @@ END - + Time @@ -2607,827 +2607,827 @@ END - + City - + City+ - + Full City - + Full City+ - + Light French - + French - + at %1 - + %1 after FCs - + %1 after FCe - + ET - BT = %1 - + ET - BT = %1%2 - + HUD Button - + ET Target 1 - + BT Target 1 - + ET Target 2 - + BT Target 2 - + Mode - + ET p-i-d 1 - + Smooth Deltas - + Smooth Curves - + Window - + min - + max - + Path Effects - + Style - + Font - + Y(x) - + Start - + End - + Title - + Date - + Beans - + Weight - + in - + out - + % - + Volume - + Density - + per - + Bean Size - + mm - + Whole Color - + Ground Color - + Moisture Greens - + % - + Moisture Roasted - + Ambient Conditions - + Roaster - + Operator - + Roasting Notes - + Cupping Notes - + Ambient Source - + Density in: %1 g/l => Density out: %2 g/l - + (%1 g/l) - + Number of errors found %1 - + Prefix - + Max - + Min - + Rotation - + Initial Max - + Step - + Width - + Opaqueness - + Enter two times along profile - + Start (00:00) - + End (00:00) - + Fahrenheit - + Celsius - + Time syntax error. Time not valid - + Error: End time smaller than Start time - + Best approximation was made from %1 to %2 - + No profile found - + Bars - + Color - + Marker - + Thickness - + Opacity - + Size - + Max buttons per row - + Color Pattern - + palette # - + Event - + Action - + Command - + Offset - + Factor - + Source - + Coarse - + Drying - + Maillard - + Development - + Default - + Aspect Ratio - + ET Color - + BT Color - + DeltaET Color - + DeltaBT Color - + Text Warning - + sec - + Cooling - + Curviness - + Events Playback - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Settings for non-Modbus devices - + Slave - + Register - + Float - + Function - + Type - + Host - + Port - + Device - + Control ET - + Read BT - + RS485 Unit ID - + ET Channel - + BT Channel - + AT Channel - + ET Y(x) - + BT Y(x) - + Raw - + ServerId: - + Password: - + Ratio - + Text - + Edge - + Line - + Color pattern - + dg - + Enter description - + Ramp Soak HH:MM<br>(1-4) - + Ramp Soak HH:MM<br>(5-8) - + Ramp/Soak Pattern - + WARNING - + Writing eeprom memory - + <u>Max life</u> 10,000 writes - + Infinite read life. - + After <u>writing</u> an adjustment,<br>never power down the pid<br>for the next 5 seconds <br>or the pid may never recover. - + Read operations manual - + NOTE: BT Thermocouple type is not stored in the Artisan settings - + Artisan uses 1 decimal point - + ET Thermocouple type - + BT Thermocouple type - + Ramp Soak (MM:SS)<br>(1-7) - + Ramp Soak (MM:SS)<br>(8-16) - + Pattern - + SV (7-0) - + Write - + P - + I - + D - + Artisan Fuji PXG uses MINUTES:SECONDS units in Ramp/Soaks - + Cycle - + SV - + Lookahead - + Manual - + Ramp/Soak - + Background - + SV Buttons - + SV Slider @@ -3452,112 +3452,112 @@ END - + <b>%1</b> %2/sec, <b>%3</b> %4/min - + Async - + Change - + Gain - + Rate - + Wiring - + Delta Span - + Unit - + ml - + Unit Weight - + g - + Kg - + l - + in - + out - + Moisture loss: %1% Organic loss: %2% - + Filter - + Emissivity - + ON - + OFF - + %1 to reach ET %2 - + %1 to reach BT %2 @@ -3567,17 +3567,17 @@ END - + XT Color - + XT - + current palette @@ -3623,52 +3623,52 @@ END Marker - + Circle - + Square - + Pentagon - + Diamond - + Star - + Hexagon 1 - + Hexagon 2 - + + - + x - + None @@ -4301,7 +4301,7 @@ Profile missing [CHARGE] or [DROP] - + Open Wheel Graph @@ -4471,7 +4471,7 @@ Profile missing [CHARGE] or [DROP] - + No profile found @@ -4592,850 +4592,850 @@ Continue? - + Alarm Config - + Alarms are not available for device None - + Switch Language - + Language successfully changed. Restart the application. - + Import K202 CSV - + K202 file loaded successfully - + Import K204 CSV - + K204 file loaded successfully - + Import HH506RA CSV - + HH506RA file loaded successfully - + Save Graph as PNG - + %1 size(%2,%3) saved - + Save Graph as PDF - + Save Graph as SVG - + %1 saved - + Invalid Wheel graph format - + Wheel Graph succesfully open - + Return the absolute value of x. - + Return the arc cosine (measured in radians) of x. - + Return the arc sine (measured in radians) of x. - + Return the arc tangent (measured in radians) of x. - + Return the cosine of x (measured in radians). - + Convert angle x from radians to degrees. - + Return e raised to the power of x. - + Return the logarithm of x to the given base. - + Return the base 10 logarithm of x. - + Return the minimum of x and y. - + Return the maximum of x and y. - + Return x**y (x to the power of y). - + Convert angle x from degrees to radians. - + Return the sine of x (measured in radians). - + Return the square root of x. - + Return the tangent of x (measured in radians). - + current background ET - + current background BT - + MATHEMATICAL FUNCTIONS - + SYMBOLIC VARIABLES - + Symbolic Functions - + Save Palettes - + Palettes saved - + Invalid palettes file format - + Palettes loaded - + Load Palettes - + Alarms loaded - + Interpolation failed: no profile available - + Sound turned ON - + Sound turned OFF - + [ET target 1 = %1] [BT target 1 = %2] [ET target 2 = %3] [BT target 2 = %4] - + Event #%1 added - + Event #%1 deleted - + No events found - + Roast properties updated but profile not saved to disk - + Autosave ON. Prefix: %1 - + Autosave OFF - + xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) - + <b>Event</b> hide or show the corresponding slider - + <b>Action</b> Perform an action on slider release - + <b>Command</b> depends on the action type ('{}' is replaced by <i>value</i>*<i>factor</i> + <i>offset</i>) - + Serial Command: ASCII serial command or binary a2b_uu(serial command) - + DTA Command: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating - + <b>Offset</b> added as offset to the slider value - + <b>Factor</b> multiplicator of the slider value - + Event custom buttons - + Event configuration saved - + Found empty event type box - + <b>Button Label</b> Enter \n to create labels with multiple lines. - + <b>Event Description</b> Description of the Event to be recorded. - + <b>Event type</b> Type of event to be recorded. - + <b>Action</b> Perform an action at the time of the event - + <b>Documentation</b> depends on the action type ('{}' is replaced by the event value): - + Call Program: A program/script path (absolute or relative) - + Multiple Event: Adds events of other button numbers separated by a comma: 1,2,3, etc. - + <b>Button Visibility</b> Hides/shows individual button - + <b>Keyboard Shorcut: </b> [b] Hides/shows Extra Button Rows - + Phases changed to %1 default: %2 - + Background profile not found - + Background does not match number of labels - + Playback Aid set ON at %1 secs - + No profile background found - + Reading background profile... - + Phidget Temperature Sensor IR attached - + Phidget Temperature Sensor 4-input attached - + Phidget Bridge 4-input attached - + Phidget 1018 IO attached - + Yocto Thermocouple attached - + Yocto PT100 attached - + Not enough time points for an ET curviness of %1. Set curviness to %2 - + Designer Config - + Not enough time points for an BT curviness of %1. Set curviness to %2 - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + Incorrect time format. Please recheck %1 time - + Times need to be in ascending order. Please recheck %1 time - + Designer has been reset - + The MODBUS device corresponds to input channels - + 1 and 2.. The MODBUS_34 extra device adds - + input channels 3 and 4. Inputs with slave - + id set to 0 are turned off. Modbus function 3 - + 'read holding register' is the standard. - + Modbus function 4 triggers the use of 'read - + 2 byte integer registers. A temperature of 145.2C - + is often sent as 1452. In that case you have to - + use the symbolic assignment 'x/10'. Few devices - + hold data as 4 byte floats in two registers. - + Tick the Float flag in this case. - + Serial Port Settings: %1, %2, %3, %4, %5, %6 - + External program - + Device not set - + PID to control ET set to %1 %2 ; PID to read BT set to %3 %4 - + Device set to %1. Now, check Serial Port settings - + Device set to %1. Now, chose serial port - + Device set to CENTER 305, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 309. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 303. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH506RA. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH806AU. Now, chose serial port - + Device set to %1 - + Device set to %1%2 - + Device set to %1. Now, chose Modbus serial port - + Device set to %1, which is equivalent to CENTER 302. Now, chose serial port - + Color of %1 set to %2 - + Save Wheel graph - + Wheel Graph saved - + Load Alarms - + Save Alarms - + <b>Status:</b> activate or deactive alarm - + <b>If Alarm:</b> alarm triggered only if the alarm with the given number was triggered before. Use 0 for no guard. - + <b>But Not:</b> alarm triggered only if the alarm with the given number was not triggered before. Use 0 for no guard. - + <b>From:</b> alarm only triggered after the given event - + <b>Time:</b> if not 00:00, alarm is triggered mm:ss after the event 'From' happend - + <b>Source:</b> the temperature source that is observed - + <b>Condition:</b> alarm is triggered if source rises above or below the specified temperature - + <b>Temp:</b> the speficied temperature limit - + <b>Action:</b> if all conditions are fulfilled the alarm triggeres the corresponding action - + <b>Description:</b> the text of the popup, the name of the program, the number of the event button or the new value of the slider - + <b>NOTE:</b> each alarm is only triggered once - + OFF - + CONTINUOUS CONTROL - + ON - + STANDBY MODE - + The rampsoak-mode tells how to start and end the ramp/soak - + Your rampsoak mode in this pid is: - + Mode = %1 - + Start to run from PV value: %1 - + End output status at the end of ramp/soak: %1 - + Output status while ramp/soak operation set to OFF: %1 - + Repeat Operation at the end: %1 - + Recomended Mode = 0 - + If you need to change it, change it now and come back later - + Use the Parameter Loader Software by Fuji if you need to - + Continue? - + Load PID Settings - + Save PID Settings - + Current sv = %1. Change now to sv = %2? - + Change svN - + Current pid = %1. Change now to pid =%2? - + Ramp Soak start-end mode - + Pattern changed to %1 - + Pattern did not changed - + Ramp/Soak was found ON! Turn it off before changing the pattern - + Ramp/Soak was found in Hold! Turn it off before changing the pattern - + Activate PID front buttons - + Remember SV memory has a finite life of ~10,000 writes. @@ -5443,157 +5443,157 @@ Proceed? - + RS ON - + RS OFF - + RS on HOLD - + PXG sv#%1 set to %2 - + PXR sv set to %1 - + SV%1 changed from %2 to %3) - + Unable to set sv%1 - + SV changed from %1 to %2 - + Unable to set sv - + Unable to set new sv - + Load Ramp/Soak Table - + Save Ramp/Soak Table - + PID turned on - + PID turned off - + input register'. Input registers (fct 4) usually - + are from 30000-39999. Most devices hold data in - + IO Command: set(n,0), set(n,1), toggle(n) to set Phidget IO digital output n - + ET value - + BT value - + Extra #1 T1 value - + Extra #1 T2 value - + Extra #2 T1 value - + Extra #2 T2 value - + Yn holds values sampled in the actual interval if refering to ET/BT or extra channels from devices listed before, otherwise Yn hold values sampled in the previous interval - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) writes values to the registers in slaves specified by the given ids - + <b>Event value</b> Value of event (1-100) to be recorded - + Phidget Temperature Sensor IR detached - + Phidget Temperature Sensor 4-input detached - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) or wcoils(slaveId,register,&lt;bool&gt;) writes values to the registers in slaves specified by the given ids - + Phidget Bridge 4-input detached - + Phidget 1018 IO detached @@ -5602,31 +5602,26 @@ Proceed? Hottop control turned off - - - Hottop control turned on - - Radio Button - + Meter - + PID - + TC4 - + Program @@ -5715,337 +5710,337 @@ Proceed? StatusBar - + Playback Aid set OFF - + Ready - + Decimal position successfully set to 1 - + Problem setting decimal position - + Problem setting thermocouple type - + setting autotune... - + Autotune successfully turned OFF - + Autotune successfully turned ON - + wait... - + PID OFF - + PID ON - + SV successfully set to %1 - + Empty SV box - + Unable to read SV - + Ramp/Soak operation cancelled - + No RX data - + RS ON - + Need to change pattern mode... - + Pattern has been changed. Wait 5 secs. - + Pattern could not be changed - + RampSoak could not be changed - + RS OFF - + RS successfully turned OFF - + setONOFFrampsoak(): Ramp Soak could not be set OFF - + getsegment(): problem reading ramp - + getsegment(): problem reading soak - + Finished reading Ramp/Soak val. - + Finished reading pid values - + %1 successfully sent to pid - + setpid(): There was a problem setting %1 - + Ramp/Soak successfully written - + Time Units successfully set to MM:SS - + Problem setting time units - + Thermocouple type successfully set - + SV%1 set to %2 - + Problem setting SV - + Cancelled svN change - + PID already using sv%1 - + setNsv(): bad response - + pid changed to %1 - + setNpid(): bad confirmation - + Cancelled pid change - + PID was already using pid %1 - + setNpid(): Unable to set pid %1 - + SV%1 successfully set to %2 - + setsv(): Unable to set SV - + pid #%1 successfully set to (%2,%3,%4) - + pid command failed. Bad data at pid%1 (8,8,8): (%2,%3,%4) - + sending commands for p%1 i%2 d%3 - + getallpid(): Unable to read pid values - + PID is using pid = %1 - + getallpid(): Unable to read current sv - + PID is using SV = %1 - + Ramp Soak could not be set OFF - + PID set to OFF - + PID set to ON - + Unable - + No data received - + Reading Ramp/Soak %1 ... - + problem reading Ramp/Soak - + Current pid = %1. Proceed with autotune command? - + Autotune cancelled - + UNABLE to set Autotune - + SV - + Ramp (MM:SS) - + Soak (MM:SS) - + Work in Progress @@ -6053,157 +6048,157 @@ Proceed? Tab - + Graph - + HUD - + Plotter - + Math - + UI - + General - + Notes - + Events - + Data - + Config - + Buttons - + Sliders - + Quantifiers - + Palettes - + Style - + ET/BT - + Extra - + Modbus - + Scale - + Color - + Extra Devices - + Symb ET/BT - + Phidgets - + LCDs - + RS - + SV - + PID - + Set RS - + Ramp/Soak - + Filter - + Espresso @@ -6211,335 +6206,340 @@ Proceed? Table - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL - + Time - + ET - + BT - + DeltaET - + DeltaBT - + CHARGE - + EVENT #%2 %3%4 - + Description - + Type - + Value - + Label - + Action - + Documentation - + Visibility - + Color - + Text Color - + EVENT #%1 %2%3 - + Device - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Color 1 - + Color 2 - + Label 1 - + Label 2 - + y1(x) - + y2(x) - + LCD 1 - + LCD 2 - + Curve 1 - + Curve 2 - + Parent - + Width - + Opaqueness - + Delete Wheel - + Edit Labels - + Update Labels - + Properties - + Radius - + Starting angle - + Projection - + Text Size - + Color Pattern - + Status - + If Alarm - + But Not - + From - + Source - + Condition - + Temp - + Beep - + SV - + Ramp HH:MM - + Soak HH:MM - + Name - + Weight + + + Nr + + Textbox @@ -6912,204 +6912,204 @@ Pungency - + <b>Label</b>= - + <b>Description </b>= - + <b>Type </b>= - + <b>Value </b>= - + <b>Documentation </b>= - + <b>Button# </b>= - + Save image using current graph size to a png format - + linear: linear interpolation cubic: 3rd order spline interpolation nearest: y value of the nearest point - + ON/OFF logs serial communication - + Automatic generated name = This text + date + time - + ON/OFF of automatic saving when pressing keyboard letter [a] - + Sets the directory to store batch profiles when using the letter [a] - + Allows to enter a description of the last event - + Add new extra Event button - + Delete the last extra Event button - + Show help - + Backup all palettes to a text file - + Restore all palettes from a text file - + Action Type - + Action String - + Aspect Ratio - + Example: 100 + 2*x - + Example: 100 + x - + Erases wheel parent hierarchy - + Sets graph hierarchy child->parent instead of parent->child - + Increase size of text in all the graph - + Decrease size of text in all the graph - + Decorative edge beween wheels - + Line thickness - + Line color - + Apply color pattern to whole graph - + Add new wheel - + Rotate graph 1 degree counter clockwise - + Rotate graph 1 degree clockwise - + Save graph to a text file.wg - + Sets Wheel graph to view mode - + open graph file.wg - + Close wheel graph editor - + Clear alarms table - + Interval diff --git a/translations/artisan_it.ts b/translations/artisan_it.ts index 79439bc0e..8684ddfd6 100644 --- a/translations/artisan_it.ts +++ b/translations/artisan_it.ts @@ -21,12 +21,12 @@ Button - + Help Aiuto - + Update Aggiornamento @@ -36,452 +36,452 @@ Aiuto PID - + OK OK - + Cancel Elimina - + Plot Disegna - + Background Sfondo - + Virtual Device Dispositivo virtuale - + Save Image Salva immagine - + Info Info - + Set Imposta - + Defaults Predefiniti - + Order Ordine - + Add Aggiungi - + Delete Cancella - + in Entrata - + out Uscita - + Search Cerca - + Path Percorso - + Del Cancella - + Load Carica - + Align Allinea - + Up Su - + Down Giù - + Left Sinistra - + Right Destra - + Reset Azzera - + Close Chiude - + Create Crea - + Select Seleziona - + Grid Griglia - + Title Titolo - + Y Label Etichetta Y - + X Label Etichetta X - + ET - + BT - + DeltaET - + DeltaBT - + Markers Segnali - + Text Testo - + Watermarks Indicatoridi livello - + C Lines Linee C - + Grey Grigio - + LED LED - + B/W B/W - + Reset Parents Azzera fonti - + Reverse Hierarchy Ordine di inversione - + + + - + - - - + Line Color Colore linea - + < < - + > > - + Save File Salva file - + Save Img Salva immagine - + View Mode Modo Visualizzazione - + Open Apre - + Set Color Impostazione colore - + All On Tutto acceso - + All Off Tutto spento - + Read Ra/So values Valori lettura Ra/So - + RampSoak ON Temperatura a rampa ON - + RampSoak OFF Temperatura a rampa OFF - + PID OFF PID spento - + PID ON PID acceso - + Write SV Scrittura valori di salvataggio - + Set p Imposta p - + Set i Imposta i - + Set d Imposta d - + Autotune ON Autoadattamento ON - + Autotune OFF Autoadattamento OFF - + Read Legge - + Set ET PID to 1 decimal point Imposta ET PID in decimali - + Set BT PID to 1 decimal point Imposta BT PID in decimali - + Read RS values Lettura valori temperatura a rampa - + Write SV1 Scrittura valori settaggio 1 - + Write SV2 Scrittura valori settaggio 2 - + Write SV3 Scrittura valori settaggio 3 - + Write SV4 Scrittura valori settaggio 4 - + Write SV5 Scrittura valori settaggio 5 - + Write SV6 Scrittura valori settaggio 6 - + Write SV7 Scrittura valori settaggio 7 - + ON SV buttons Tasti ON valori settaggio - + OFF SV buttons Tasti OFF valori settaggio - + Read SV (7-0) Legge valori settaggio (7-0) - + pid 1 PID 1 - + pid 2 PID 2 - + pid 3 PID 3 - + pid 4 PID 4 - + pid 5 PID 5 - + pid 6 PID 6 - + pid 7 PID 7 - + Set ET PID to MM:SS time units Imposta ET PID in MM:SS - + Save Salva @@ -611,127 +611,127 @@ END Ripristino da - + SV Buttons ON Inserimento tasti VI - + SV Buttons OFF Disinserimento tasti VI - + Read SV Legge IV - + Read PID Values Legge valori PID - + Write Scrive - + Drying Phase Fase asciugatura - + Maillard Phase Fase di Maillard - + Development Phase Fase sviluppo - + Cooling Phase Fase raffreddamento - + Color Colore - + scan Scansione - + Apply Applica - + Insert Inserimento - + Clear Pulisce - + Write All Scrive tutto - + Write RS values Scrittura valori temperatura a rampa - + Write SV (7-0) Scrittura IV (7-0) - + Read PIDs Lettura PID - + Write PIDs Scrittura PID - + On Acceso - + Off Spento - + calc Calcola - + unit - + << - + >> @@ -739,317 +739,317 @@ END CheckBox - + DeltaET - + DeltaBT - + Projection Proiezione - + Show Mostra - + Beep Trillo - + Delete roast properties on RESET Cancella proprietà tostatura su RESET - + Serial Log ON/OFF Registro seriale ON/OFF - + Autosave [a] Salva automaticamente [a] - + Button Tasto - + Mini Editor Mini annotatore - + CHARGE CARICO - + DRY END ASCIUTTO - + FC START INIZIO PC - + FC END FINE PC - + SC START INIZIO SC - + SC END FINE SC - + DROP SCARICO - + COOL END RAFFREDDATO - + Auto Adjusted Auto aggiustamento - + Background Sfondo - + Text Testo - + Events Eventi - + Time Tempo - + Bar Barra - + ETBTa - + Evaluation Valutazione - + Characteristics Caratteristiche - + ET ET - + BT BT - + Playback Aid Aiuto riproduzione - + Heavy FC PC forte - + Low FC PC leggero - + Light Cut Taglio chiaro - + Dark Cut Taglio scuro - + Drops Gocce - + Oily Oleoso - + Uneven Non omogeneo - + Tipping Tipping - + Scorching Scorching - + Divots Vuoti - + Drop Spikes Picco acuto - + Smooth Spikes Picco morbido - + Limits - + Watermarks Indicatori di livello - + Lock Max chiusa massima - + Smooth2 Morbido2 - + Decimal Places Punti decimali - + Auto CHARGE Auto CARICO - + Auto DROP Auto SCARICO - + Mark TP Segnale punto di minimo - + Phases LCDs Fasi LCD - + Auto DRY Auto ASCIUTTO - + Auto FCs Auto iPC - + Modbus Port Porta Modbus - + Load alarms from profile Carica allarmi da profilo - + Start PID on CHARGE Inizio PID su carico - + Load Ramp/Soak table from profile Carica temperatura a rampa da profilo - + Alarm Popups Popup allarmi - + Lock Blocco - + Align FCs Allinea iPC - + /min /min - + Control Button Tasto controllo - + Ratiometric Raziometrico @@ -1057,7 +1057,7 @@ END ComboBox - + None Nulla @@ -1077,102 +1077,102 @@ END Ventilatore - + linear Lineare - + newton Newton - + metrics Metrico - + thermal Termico - + cubic Cubico - + nearest Più vicino - + g g - + Kg Kg - + ml ml - + l l - + upper right Superiore destro - + upper left Superiore sinistro - + lower left Inferiore sinistro - + lower right Inferiore destro - + right Destra - + center left Centro sinistra - + center right Centro destra - + lower center Centro in basso - + upper center Centro sopra - + center @@ -1182,292 +1182,292 @@ END 30 secondi - + 1 minute 1 minuto - + 2 minute 2 minuti - + 3 minute 3 minuti - + 4 minute 4 minuti - + 5 minute 5 minuti - + solid Solido - + dashed Tratteggiato - + dashed-dot Dot tratteggiato - + dotted Punteggiato - + Event #0 Evento#0 - + Event #%1 Evento #%1 - + lb Libbre - + liter Litri - + gallon Galloni - + quart Quart - + pint Pinta - + cup Coppa - + cm^3 Cm^3 - + Type Tipo - + Value Valore - + Serial Command Comando seriale - + Modbus Command Comando Modbus - + DTA Command Comando DTA - + Call Program Programma chiama - + OFF Spento - + ON Acceso - + Multiple Event Evento multiplo - + grey Grigio - + Dark Grey Grigio scuro - + Slate Grey Grigio ardesia - + Light Gray Grigio chiaro - + Black Nero - + White Bianco - + Transparent Trasparente - + Flat Piatto - + Perpendicular Perpendicolare - + Radial Radiale - + DeltaET - + DeltaBT - + ET - + BT - + START INIZIO - + CHARGE CARICO - + TP PM - + DRY END ASCIUTTO - + FC START INIZIO PC - + FC END FINE PC - + SC START INIZIO SC - + SC END FINE SC - + DROP SCARICO - + COOL RAFFREDDATO - + Event Button Tasto evento - + Slider Cursore - + below Sotto - + above Sopra - + Pop Up Spuntare - + SV Commands Comandi valore settaggio - + Ramp Commands Comandi incremento @@ -1477,82 +1477,82 @@ END Velocità - + little-endian Formato little-endian - + classic Classico - + xkcd xkcd - + Default Predefinito - + Humor - + Comic - + DRY ASCIUTTO - + FCs iPC - + FCe fPC - + SCs iSC - + SCe fSC - + COOL END RAFFREDDATO - + IO Command Comando IO - + Hottop Heater - + Hottop Fan - + Hottop Command @@ -1618,12 +1618,12 @@ END Directory - + profiles Profili - + other Altro @@ -1631,42 +1631,42 @@ END Error Message - + Unable to move CHARGE to a value that does not exist Non idoneo a spostare Charge a valore non esistente - + HH806Wtemperature(): Unable to initiate device HH806WTemperatura():Non idoneo ad avviare un dispositivo - + HH506RAGetID: %1 bytes received but 5 needed HH506RAGetID: %1 di bytes ricevuti ma 5 necessari - + HH506RAtemperature(): Unable to get id from HH506RA device HH506RAtemperatura():non identificabile da dispositivo HH506RA - + HH506RAtemperature(): %1 bytes received but 14 needed HH506RAtemperatura():%1 di bytes ricevuti ma 14 necessario - + Segment values could not be written into PID Valori di segmento non possono essere scritti nel PID - + RampSoak could not be changed Temperatura a rampa non può essere cambiato - + pid.readoneword(): %1 RX bytes received (7 needed) for unit ID=%2 pid.lettura():%1RXbytes ricevuti (7richiesti) per unità ID=%2 @@ -1676,112 +1676,112 @@ END Errore - + Value Error: Errore valore: - + Exception: Eccezione: - + IO Error: Errore IO: - + Modbus Error: Errore Modbus: - + Serial Exception: Eccezione seriale: - + F80h Error Errore F80h - + CRC16 data corruption ERROR. TX does not match RX. Check wiring CRC16 Errore corruzione dati. TX non combina con RX. Controlla collegamento - + No RX data received No ricevimento dati RX - + Unable to open serial port Non in grado ad aprire porta seriale - + CENTER303temperature(): %1 bytes received but 8 needed Centro303temperatura():%1bytes ricevuti ma 8 necessari - + CENTER306temperature(): %1 bytes received but 10 needed Center306temperatura(): %1 bytes ricevuti ma 10 necesari - + DTAcommand(): %1 bytes received but 15 needed ComandoDTA():%1bytes ricevuti ma 15 necessari - + CENTER309temperature(): %1 bytes received but 45 needed Center309temperatura(): %1 bytes ricevuti ma 45 necesari - + Arduino could not set channels Arduino non può impostare i canali - + Arduino could not set temperature unit Arduino non può impostare unità temperatura - + CENTER302temperature(): %1 bytes received but 7 needed Centro302temperatura():%1bytes ricevuti ma 7 necessari - + Serial Exception: invalid comm port Eccezione seriale: porta comunicazione non valida - + Serial Exception: timeout Eccezione seriale: fuori tempo - + Univariate: no profile data available Univariabile: dati profilo non disponibili - + Polyfit: no profile data available Polyfit: dati profilo non disponibili - + MS6514temperature(): %1 bytes received but 16 needed MS6514temperatura(): %1 bytes ricevuti ma 16 necessari - + HH806AUtemperature(): %1 bytes received but 16 needed HH806Atemperatura(): %1 bytes ricevuti ma 16 richiesti @@ -1791,7 +1791,7 @@ END Errore: - + Arduino could not set filters Arduino non può impostare i filtri @@ -1852,147 +1852,147 @@ END Form Caption - + Extras Extra - + Volume Calculator - + Roast Properties - + Tare Setup - + Artisan Platform - + Settings Viewer - + Serial Log - + Error Log - + Message History - + Keyboard Autosave [a] - + AutoSave Path - + Axes - + Roast Calculator - + Events Eventi - + Roast Phases - + Cup Profile - + Profile Background - + Statistics - + Designer Config - + Manual Temperature Logger - + Serial Ports Configuration - + Device Assignment - + Colors - + Wheel Graph Editor - + Alarms - + Fuji PXR PID Control - + Fuji PXG PID Control - + Arduino Control - + Delta DTA PID Control @@ -2000,257 +2000,257 @@ END GroupBox - + Curves - + LCDs - + HUD - + Input Filters - + Look - + Interpolate - + Univariate - + Polyfit - + Appearance - + Resolution - + Sound - + WebLCDs - + Times - + Time Axis - + Temperature Axis - + DeltaBT/DeltaET Axis - + Legend Location - + Grid Griglia - + Rate of Change - + Temperature Conversion - + Weight Conversion - + Volume Conversion - + Event Types - + Default Buttons - + Management - + Evaluation - + Display - + Initial Settings - + Input 1 - + Input 2 - + Input 3 - + Input 4 - + Phidgets 1045 - + Phidgets 1046 RTD - + Phidget IO - + Network - + PID - + Arduino TC4 - + External Program - + Symbolic Assignments - + Timer LCD - + ET LCD - + BT LCD - + DeltaET LCD - + DeltaBT LCD - + Extra Devices / PID SV LCD - + Label Properties - + p-i-d - + Set Value - + Phidgets 1048/1051 - + Sampling @@ -2436,12 +2436,12 @@ END Label - + ET - + BT @@ -2456,47 +2456,47 @@ END - + at - + CHARGE CARICO - + DRY END ASCIUTTO - + FC START INIZIO PC - + FC END FINE PC - + SC START INIZIO SC - + SC END FINE SC - + DROP SCARICO - + COOL RAFFREDDATO @@ -2506,7 +2506,7 @@ END EVENTO - + min @@ -2571,7 +2571,7 @@ END - + Time Tempo @@ -2656,932 +2656,932 @@ END - + City - + City+ - + Full City - + Full City+ - + Light French - + French - + %1 to reach ET %2 - + at %1 - + %1 to reach BT %2 - + %1 after FCs - + %1 after FCe - + ET - BT = %1 - + ET - BT = %1%2 - + HUD Button - + ET Target 1 - + BT Target 1 - + ET Target 2 - + BT Target 2 - + Mode - + ET p-i-d 1 - + Smooth Deltas - + Smooth Curves - + Window - + max - + Delta Span - + Path Effects - + Style - + Font - + Y(x) - + Start - + End - + Port - + Unit - + ml ml - + Unit Weight - + g g - + Weight - + Kg Kg - + Volume - + l l - + in Entrata - + out Uscita - + Title Titolo - + Date - + Beans - + in - + out - + % - + Density - + per - + Bean Size - + mm - + Whole Color - + Ground Color - + Moisture Greens - + % - + Moisture Roasted - + Ambient Conditions - + Roaster - + Operator - + Roasting Notes - + Cupping Notes - + Ambient Source - + Density in: %1 g/l => Density out: %2 g/l - + Moisture loss: %1% Organic loss: %2% - + (%1 g/l) - + Number of errors found %1 - + Prefix - + Max - + Min - + Rotation - + Initial Max - + Step - + Width - + Opaqueness - + Enter two times along profile - + Start (00:00) - + End (00:00) - + Fahrenheit - + Celsius - + Time syntax error. Time not valid - + Error: End time smaller than Start time - + Best approximation was made from %1 to %2 - + <b>%1</b> %2/sec, <b>%3</b> %4/min - + No profile found - + Bars - + Color Colore - + Marker - + Thickness - + Opacity - + Size - + Max buttons per row - + Color Pattern - + palette # - + Event - + Action - + Command - + Offset - + Factor - + Source - + Coarse - + ON - + OFF - + Drying - + Maillard - + Development - + Default Predefinito - + Aspect Ratio - + ET Color - + BT Color - + DeltaET Color - + DeltaBT Color - + Text Warning - + sec - + Cooling - + Curviness - + Events Playback - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Settings for non-Modbus devices - + Slave - + Register - + Float - + Function - + Type - + Host - + Device - + Control ET - + Read BT - + RS485 Unit ID - + ET Channel - + BT Channel - + AT Channel - + Filter - + ET Y(x) - + BT Y(x) - + Async - + Change - + Emissivity - + Gain - + Wiring - + Rate - + Raw - + ServerId: - + Password: - + Ratio - + Text Testo - + Edge - + Line - + Color pattern - + dg - + Enter description - + Ramp Soak HH:MM<br>(1-4) - + Ramp Soak HH:MM<br>(5-8) - + Ramp/Soak Pattern - + WARNING - + Writing eeprom memory - + <u>Max life</u> 10,000 writes - + Infinite read life. - + After <u>writing</u> an adjustment,<br>never power down the pid<br>for the next 5 seconds <br>or the pid may never recover. - + Read operations manual - + NOTE: BT Thermocouple type is not stored in the Artisan settings - + Artisan uses 1 decimal point - + ET Thermocouple type - + BT Thermocouple type - + Ramp Soak (MM:SS)<br>(1-7) - + Ramp Soak (MM:SS)<br>(8-16) - + Pattern - + SV (7-0) - + Write - + P - + I - + D - + Artisan Fuji PXG uses MINUTES:SECONDS units in Ramp/Soaks - + Cycle - + SV - + Lookahead - + Manual - + Ramp/Soak - + Background Sfondo - + SV Buttons - + SV Slider @@ -3591,17 +3591,17 @@ END - + XT Color - + XT - + current palette @@ -3647,52 +3647,52 @@ END Marker - + Circle - + Square - + Pentagon - + Diamond - + Star - + Hexagon 1 - + Hexagon 2 - + + + - + x - + None Nulla @@ -4325,7 +4325,7 @@ Profile missing [CHARGE] or [DROP] - + Open Wheel Graph @@ -4495,7 +4495,7 @@ Profile missing [CHARGE] or [DROP] - + No profile found @@ -4616,935 +4616,935 @@ Continue? - + Alarm Config - + Alarms are not available for device None - + Switch Language - + Language successfully changed. Restart the application. - + Import K202 CSV - + K202 file loaded successfully - + Import K204 CSV - + K204 file loaded successfully - + Import HH506RA CSV - + HH506RA file loaded successfully - + Save Graph as PNG - + %1 size(%2,%3) saved - + Save Graph as PDF - + Save Graph as SVG - + %1 saved - + Invalid Wheel graph format - + Wheel Graph succesfully open - + Return the absolute value of x. - + Return the arc cosine (measured in radians) of x. - + Return the arc sine (measured in radians) of x. - + Return the arc tangent (measured in radians) of x. - + Return the cosine of x (measured in radians). - + Convert angle x from radians to degrees. - + Return e raised to the power of x. - + Return the logarithm of x to the given base. - + Return the base 10 logarithm of x. - + Return the minimum of x and y. - + Return the maximum of x and y. - + Return x**y (x to the power of y). - + Convert angle x from degrees to radians. - + Return the sine of x (measured in radians). - + Return the square root of x. - + Return the tangent of x (measured in radians). - + ET value - + BT value - + Extra #1 T1 value - + Extra #1 T2 value - + Extra #2 T1 value - + Extra #2 T2 value - + current background ET - + current background BT - + Yn holds values sampled in the actual interval if refering to ET/BT or extra channels from devices listed before, otherwise Yn hold values sampled in the previous interval - + MATHEMATICAL FUNCTIONS - + SYMBOLIC VARIABLES - + Symbolic Functions - + Save Palettes - + Palettes saved - + Invalid palettes file format - + Palettes loaded - + Load Palettes - + Alarms loaded - + Interpolation failed: no profile available - + Sound turned ON - + Sound turned OFF - + [ET target 1 = %1] [BT target 1 = %2] [ET target 2 = %3] [BT target 2 = %4] - + Event #%1 added - + Event #%1 deleted - + No events found - + Roast properties updated but profile not saved to disk - + Autosave ON. Prefix: %1 - + Autosave OFF - + xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) - + <b>Event</b> hide or show the corresponding slider - + <b>Action</b> Perform an action on slider release - + <b>Command</b> depends on the action type ('{}' is replaced by <i>value</i>*<i>factor</i> + <i>offset</i>) - + Serial Command: ASCII serial command or binary a2b_uu(serial command) - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) or wcoils(slaveId,register,&lt;bool&gt;) writes values to the registers in slaves specified by the given ids - + DTA Command: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating - + <b>Offset</b> added as offset to the slider value - + <b>Factor</b> multiplicator of the slider value - + Event custom buttons - + Event configuration saved - + Found empty event type box - + <b>Button Label</b> Enter \n to create labels with multiple lines. - + <b>Event Description</b> Description of the Event to be recorded. - + <b>Event type</b> Type of event to be recorded. - + <b>Event value</b> Value of event (1-100) to be recorded - + <b>Action</b> Perform an action at the time of the event - + <b>Documentation</b> depends on the action type ('{}' is replaced by the event value): - + Call Program: A program/script path (absolute or relative) - + Multiple Event: Adds events of other button numbers separated by a comma: 1,2,3, etc. - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) writes values to the registers in slaves specified by the given ids - + IO Command: set(n,0), set(n,1), toggle(n) to set Phidget IO digital output n - + <b>Button Visibility</b> Hides/shows individual button - + <b>Keyboard Shorcut: </b> [b] Hides/shows Extra Button Rows - + Phases changed to %1 default: %2 - + Background profile not found - + Background does not match number of labels - + Playback Aid set ON at %1 secs - + No profile background found - + Reading background profile... - + Phidget Temperature Sensor IR attached - + Phidget Temperature Sensor IR detached - + Phidget Temperature Sensor 4-input attached - + Phidget Temperature Sensor 4-input detached - + Phidget Bridge 4-input attached - + Phidget Bridge 4-input detached - + Phidget 1018 IO attached - + Phidget 1018 IO detached - + Yocto Thermocouple attached - + Yocto PT100 attached - + Not enough time points for an ET curviness of %1. Set curviness to %2 - + Designer Config - + Not enough time points for an BT curviness of %1. Set curviness to %2 - + CHARGE CARICO - + DRY END ASCIUTTO - + FC START INIZIO PC - + FC END FINE PC - + SC START INIZIO SC - + SC END FINE SC - + DROP SCARICO - + Incorrect time format. Please recheck %1 time - + Times need to be in ascending order. Please recheck %1 time - + Designer has been reset - + The MODBUS device corresponds to input channels - + 1 and 2.. The MODBUS_34 extra device adds - + input channels 3 and 4. Inputs with slave - + id set to 0 are turned off. Modbus function 3 - + 'read holding register' is the standard. - + Modbus function 4 triggers the use of 'read - + input register'. Input registers (fct 4) usually - + are from 30000-39999. Most devices hold data in - + 2 byte integer registers. A temperature of 145.2C - + is often sent as 1452. In that case you have to - + use the symbolic assignment 'x/10'. Few devices - + hold data as 4 byte floats in two registers. - + Tick the Float flag in this case. - + Serial Port Settings: %1, %2, %3, %4, %5, %6 - + External program - + Device not set - + PID to control ET set to %1 %2 ; PID to read BT set to %3 %4 - + Device set to %1. Now, check Serial Port settings - + Device set to %1. Now, chose serial port - + Device set to CENTER 305, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 309. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 303. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH506RA. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH806AU. Now, chose serial port - + Device set to %1 - + Device set to %1%2 - + Device set to %1. Now, chose Modbus serial port - + Device set to %1, which is equivalent to CENTER 302. Now, chose serial port - + Color of %1 set to %2 - + Save Wheel graph - + Wheel Graph saved - + Load Alarms - + Save Alarms - + <b>Status:</b> activate or deactive alarm - + <b>If Alarm:</b> alarm triggered only if the alarm with the given number was triggered before. Use 0 for no guard. - + <b>But Not:</b> alarm triggered only if the alarm with the given number was not triggered before. Use 0 for no guard. - + <b>From:</b> alarm only triggered after the given event - + <b>Time:</b> if not 00:00, alarm is triggered mm:ss after the event 'From' happend - + <b>Source:</b> the temperature source that is observed - + <b>Condition:</b> alarm is triggered if source rises above or below the specified temperature - + <b>Temp:</b> the speficied temperature limit - + <b>Action:</b> if all conditions are fulfilled the alarm triggeres the corresponding action - + <b>Description:</b> the text of the popup, the name of the program, the number of the event button or the new value of the slider - + <b>NOTE:</b> each alarm is only triggered once - + OFF - + CONTINUOUS CONTROL - + ON - + STANDBY MODE - + The rampsoak-mode tells how to start and end the ramp/soak - + Your rampsoak mode in this pid is: - + Mode = %1 - + Start to run from PV value: %1 - + End output status at the end of ramp/soak: %1 - + Output status while ramp/soak operation set to OFF: %1 - + Repeat Operation at the end: %1 - + Recomended Mode = 0 - + If you need to change it, change it now and come back later - + Use the Parameter Loader Software by Fuji if you need to - + Continue? - + Load PID Settings - + Save PID Settings - + Current sv = %1. Change now to sv = %2? - + Change svN - + Current pid = %1. Change now to pid =%2? - + Ramp Soak start-end mode - + Pattern changed to %1 - + Pattern did not changed - + Ramp/Soak was found ON! Turn it off before changing the pattern - + Ramp/Soak was found in Hold! Turn it off before changing the pattern - + Activate PID front buttons - + Remember SV memory has a finite life of ~10,000 writes. @@ -5552,72 +5552,72 @@ Proceed? - + RS ON - + RS OFF - + RS on HOLD - + PXG sv#%1 set to %2 - + PXR sv set to %1 - + SV%1 changed from %2 to %3) - + Unable to set sv%1 - + SV changed from %1 to %2 - + Unable to set sv - + Unable to set new sv - + Load Ramp/Soak Table - + Save Ramp/Soak Table - + PID turned on - + PID turned off @@ -5626,31 +5626,26 @@ Proceed? Hottop control turned off - - - Hottop control turned on - - Radio Button - + Meter - + PID - + TC4 - + Program @@ -5739,337 +5734,337 @@ Proceed? StatusBar - + Playback Aid set OFF - + Ready - + Decimal position successfully set to 1 - + Problem setting decimal position - + Problem setting thermocouple type - + setting autotune... - + Autotune successfully turned OFF - + Autotune successfully turned ON - + wait... - + PID OFF - + PID ON - + SV successfully set to %1 - + Empty SV box - + Unable to read SV - + Ramp/Soak operation cancelled - + No RX data - + RS ON - + Need to change pattern mode... - + Pattern has been changed. Wait 5 secs. - + Pattern could not be changed - + RampSoak could not be changed - + RS OFF - + RS successfully turned OFF - + setONOFFrampsoak(): Ramp Soak could not be set OFF - + getsegment(): problem reading ramp - + getsegment(): problem reading soak - + Reading Ramp/Soak %1 ... - + problem reading Ramp/Soak - + Finished reading Ramp/Soak val. - + Finished reading pid values - + %1 successfully sent to pid - + setpid(): There was a problem setting %1 - + Ramp/Soak successfully written - + Time Units successfully set to MM:SS - + Problem setting time units - + Thermocouple type successfully set - + SV%1 set to %2 - + Problem setting SV - + Cancelled svN change - + PID already using sv%1 - + setNsv(): bad response - + pid changed to %1 - + setNpid(): bad confirmation - + Cancelled pid change - + PID was already using pid %1 - + setNpid(): Unable to set pid %1 - + SV%1 successfully set to %2 - + setsv(): Unable to set SV - + pid #%1 successfully set to (%2,%3,%4) - + pid command failed. Bad data at pid%1 (8,8,8): (%2,%3,%4) - + sending commands for p%1 i%2 d%3 - + getallpid(): Unable to read pid values - + PID is using pid = %1 - + getallpid(): Unable to read current sv - + PID is using SV = %1 - + Ramp Soak could not be set OFF - + PID set to OFF - + PID set to ON - + Unable - + No data received - + Current pid = %1. Proceed with autotune command? - + Autotune cancelled - + UNABLE to set Autotune - + SV - + Ramp (MM:SS) - + Soak (MM:SS) - + Work in Progress @@ -6077,157 +6072,157 @@ Proceed? Tab - + Graph - + HUD - + Plotter - + Math - + UI - + General - + Notes - + Events Eventi - + Data - + Config - + Buttons - + Sliders - + Quantifiers - + Palettes - + Style - + Filter - + Espresso - + ET/BT - + Extra - + Modbus - + Scale - + Color Colore - + Extra Devices - + Symb ET/BT - + Phidgets - + LCDs - + RS - + SV - + PID - + Set RS - + Ramp/Soak @@ -6235,335 +6230,340 @@ Proceed? Table - + DRY END ASCIUTTO - + FC START INIZIO PC - + FC END FINE PC - + SC START INIZIO SC - + SC END FINE SC - + DROP SCARICO - + COOL RAFFREDDATO - + Time Tempo - + ET - + BT - + DeltaET - + DeltaBT - + CHARGE CARICO - + EVENT #%2 %3%4 - + Description - + Type - + Value Valore - + Name - + Weight - + Label - + Action - + Documentation - + Visibility - + Color Colore - + Text Color - + EVENT #%1 %2%3 - + Device - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Color 1 - + Color 2 - + Label 1 - + Label 2 - + y1(x) - + y2(x) - + LCD 1 - + LCD 2 - + Curve 1 - + Curve 2 - + Parent - + Width - + Opaqueness - + Delete Wheel - + Edit Labels - + Update Labels - + Properties - + Radius - + Starting angle - + Projection Proiezione - + Text Size - + Color Pattern - + Status - + If Alarm - + But Not - + From - + Source - + Condition - + Temp - + Beep - + SV - + Ramp HH:MM - + Soak HH:MM + + + Nr + + Textbox @@ -6936,204 +6936,204 @@ Pungency - + <b>Label</b>= - + <b>Description </b>= - + <b>Type </b>= - + <b>Value </b>= - + <b>Documentation </b>= - + <b>Button# </b>= - + Save image using current graph size to a png format - + linear: linear interpolation cubic: 3rd order spline interpolation nearest: y value of the nearest point - + ON/OFF logs serial communication - + Automatic generated name = This text + date + time - + ON/OFF of automatic saving when pressing keyboard letter [a] - + Sets the directory to store batch profiles when using the letter [a] - + Allows to enter a description of the last event - + Add new extra Event button - + Delete the last extra Event button - + Show help - + Backup all palettes to a text file - + Restore all palettes from a text file - + Action Type - + Action String - + Aspect Ratio - + Example: 100 + 2*x - + Example: 100 + x - + Erases wheel parent hierarchy - + Sets graph hierarchy child->parent instead of parent->child - + Increase size of text in all the graph - + Decrease size of text in all the graph - + Decorative edge beween wheels - + Line thickness - + Line color - + Apply color pattern to whole graph - + Add new wheel - + Rotate graph 1 degree counter clockwise - + Rotate graph 1 degree clockwise - + Save graph to a text file.wg - + Sets Wheel graph to view mode - + open graph file.wg - + Close wheel graph editor - + Clear alarms table - + Interval diff --git a/translations/artisan_ja.ts b/translations/artisan_ja.ts index 31457c7b1..a2b62b69c 100644 --- a/translations/artisan_ja.ts +++ b/translations/artisan_ja.ts @@ -178,7 +178,7 @@ END END - + Update 更新 @@ -188,92 +188,92 @@ END PID ヘルプ - + OK OK - + Cancel キャンセル - + Color カラー - + Plot プロット - + Background 背景 - + Virtual Device 仮想デバイス - + Save Image 画像を保存 - + Help ヘルプ - + Info 情報 - + Set セット - + Defaults デフォルト - + Order 順序 - + Add 追加 - + Delete 削除 - + in 焙煎前 - + out 焙煎後 - + Search 検索 - + Path パス @@ -288,57 +288,57 @@ END パターンを復元 - + Save 保存 - + Load ロード - + Del 削除 - + Align 整列 - + Up 上へ - + Down 下へ - + Left 左へ - + Right 右へ - + Reset リセット - + Close 閉じる - + Create 作成 @@ -348,352 +348,352 @@ END ポートスキャン - + Select 選択 - + Grid グリッド - + Title タイトル - + Y Label Y軸ラベル - + X Label X軸ラベル - + Drying Phase Drying フェーズ - + Maillard Phase Maillard フェーズ - + Development Phase Development フェーズ - + Cooling Phase Cooling フェーズ - + ET ET - + BT BT - + DeltaET DeltaET - + DeltaBT DeltaBT - + Markers マーカー - + Text テキスト - + Watermarks 透かし - + C Lines C ライン - + Grey グレー - + LED LED - + B/W 白黒 - + Reset Parents ペアレントをリセット - + Reverse Hierarchy 階層を反転 - + + - + - - + Line Color ラインカラー - + < - + > - + Save File ファイルを保存 - + Save Img 画像を保存 - + View Mode 表示モード - + Open 開く - + Set Color カラーをセット - + All On 全て On - + All Off 全て Off - + Read Ra/So values Ra/So の値を読み込む - + RampSoak ON RampSoak を ON - + RampSoak OFF RampSoak を OFF - + PID OFF PID を OFF - + PID ON PID を ON - + Write SV SV に書き込む - + SV Buttons ON SV ボタンを ON - + SV Buttons OFF SV ボタンを OFF - + Read SV SV から読み込む - + Set p p をセット - + Set i i をセット - + Set d d をセット - + Autotune ON Autotune を ON - + Autotune OFF Autotune を OFF - + Read PID Values PID の値を読み込む - + Read 読み込む - + Set ET PID to 1 decimal point ET PID を小数第一位までにセット - + Set BT PID to 1 decimal point BT PID を小数第一位までにセット - + Read RS values RS の値を読み込む - + Write SV1 SV1 に書き込む - + Write SV2 SV2 に書き込む - + Write SV3 SV3 に書き込む - + Write SV4 SV4 に書き込む - + Write SV5 SV5 に書き込む - + Write SV6 SV6 に書き込む - + Write SV7 SV7 に書き込む - + ON SV buttons ON SV ボタン - + OFF SV buttons OFF SV ボタン - + Read SV (7-0) SV (7-0) から読み込む - + pid 1 pid 1 - + pid 2 pid 2 - + pid 3 pid 3 - + pid 4 pid 4 - + pid 5 pid 5 - + pid 6 pid 6 - + pid 7 pid 7 @@ -703,87 +703,87 @@ END 全て読み込む - + Set ET PID to MM:SS time units ET PID の時間単位を「分:秒 (MM:SS)」にセット - + Write 書き込む - + Insert - + Clear - + scan - + Write All - + Write RS values - + Write SV (7-0) - + Read PIDs - + Write PIDs - + Apply - + On - + Off - + calc - + unit - + << - + >> @@ -791,122 +791,122 @@ END CheckBox - + Heavy FC Heavy FC - + Low FC Low FC - + Light Cut Light Cut - + Dark Cut Dark Cut - + Drops Drops - + Oily Oily - + Uneven Uneven - + Tipping Tipping - + Scorching Scorching - + Divots Divots - + DeltaET DeltaET - + DeltaBT DeltaBT - + Smooth Spikes スムーススパイク - + Drop Spikes ドロップスパイク - + Limits リミット - + Projection プロジェクション - + Show 表示 - + Beep ビープ音 - + Delete roast properties on RESET RESET 時に焙煎プロパティを削除する - + Serial Log ON/OFF シリアルポートログの ON/OFF - + Autosave [a] オートセーブ [a] - + Lock Max 最大を固定 - + Button ボタン - + Mini Editor ミニエディタ @@ -916,82 +916,82 @@ END オートマチック CHARGE/DROP - + CHARGE CHARGE - + DRY END DRY END - + FC START FC START - + FC END FC END - + SC START SC START - + SC END SC END - + DROP DROP - + COOL END COOL END - + Auto Adjusted オートアジャスト - + Watermarks 透かし - + Background 背景 - + Text テキスト - + Events イベント - + Playback Aid プレーバック AID - + Time 時間 - + Bar バー @@ -1001,27 +1001,27 @@ END d/m - + ETBTa ETBTa - + Evaluation 評価 - + Characteristics 特徴 - + ET ET - + BT BT @@ -1031,92 +1031,92 @@ END TC4_56 - + Load alarms from profile - + Auto CHARGE - + Auto DROP - + Mark TP - + Phases LCDs - + Auto DRY - + Auto FCs - + Decimal Places - + Modbus Port - + Smooth2 - + Start PID on CHARGE - + Load Ramp/Soak table from profile - + Control Button - + Ratiometric - + Align FCs - + /min - + Alarm Popups - + Lock @@ -1144,112 +1144,112 @@ END Fan - + linear linear - + newton newton - + metrics metrics - + thermal thermal - + cubic cubic - + nearest nearest - + g g - + Kg Kg - + ml ml - + l l - + ET ET - + BT BT - + upper right 上段右 - + upper left 上段左 - + lower left 下段左 - + lower right 下段右 - + right - + center left 中段左 - + center right 中段右 - + lower center 下段中央 - + upper center 上段中央 - + center 中央 @@ -1259,367 +1259,367 @@ END 30秒 - + 1 minute 1分 - + 2 minute 2分 - + 3 minute 3分 - + 4 minute 4分 - + 5 minute 5分 - + solid 実線 - + dashed 破線 - + dashed-dot 破点線 - + dotted 点線 - + None 無し - + Event #0 Event #0 - + Event #%1 Event #%1 - + lb lb - + liter liter - + gallon gallon - + quart quart - + pint pint - + cup cup - + cm^3 cm^3 - + Type タイプ別 - + Value 値別 - + Serial Command シリアルコマンド - + Modbus Command Modbus コマンド - + DTA Command DTA コマンド - + Call Program プログラム呼び出し - + OFF OFF - + ON ON - + Multiple Event 複合イベント - + DeltaBT DeltaBT - + DeltaET DeltaET - + SV Commands SV コマンド - + Ramp Commands Ramp コマンド - + little-endian リトルエンディアン - + grey 灰色 - + Dark Grey 暗いグレー - + Slate Grey ねずみ色 - + Light Gray 明るいグレー - + Black ブラック - + White ホワイト - + Transparent 透過 - + Flat 水平 - + Perpendicular 垂直 - + Radial 放射状 - + START START - + CHARGE CHARGE - + TP TP - + DRY END DRY END - + FC START FC START - + FC END FC END - + SC START SC START - + SC END SC END - + DROP DROP - + COOL COOL - + below 値以上 - + above 値以下 - + Pop Up ポップアップ表示 - + Event Button イベントボタン - + Slider スライダー - + classic - + xkcd - + Default デフォルト - + Humor - + Comic - + DRY - + FCs - + FCe - + SCs - + SCe - + COOL END COOL END - + IO Command - + Hottop Heater - + Hottop Fan - + Hottop Command @@ -1690,12 +1690,12 @@ END edit text - + profiles profiles - + other other @@ -1703,17 +1703,17 @@ END Error Message - + Exception: 例外 : - + Value Error: 値のエラー : - + IO Error: IO エラー : @@ -1723,42 +1723,42 @@ END エラー - + Unable to move CHARGE to a value that does not exist 値が存在しないため、CHARGE に移行できません - + Modbus Error: Modbus エラー : - + Serial Exception: シリアルポートの例外 : - + F80h Error F80h エラー - + CRC16 data corruption ERROR. TX does not match RX. Check wiring エラー CRC16 データが破損しています。TX と RX は一致しません。配線を確認してください - + No RX data received RX データーが受信されませんでした - + DTAcommand(): %1 bytes received but 15 needed DTAcommand(): %1 バイト受信しましたが、15 必要です - + Unable to open serial port シリアルポートが開けません @@ -1768,62 +1768,62 @@ END HH806AUtemperature(): %1 バイト受信しましたが、 14 必要です - + HH806Wtemperature(): Unable to initiate device HH806Wtemperature(): デバイスを始動できません - + HH506RAGetID: %1 bytes received but 5 needed HH506RAGetID: %1 バイト受信しましたが、 5 必要です - + HH506RAtemperature(): Unable to get id from HH506RA device HH506RAtemperature(): HH506RAデバイスから ID を取得できません - + HH506RAtemperature(): %1 bytes received but 14 needed HH506RAtemperature(): %1 バイト受信しましたが、 14 必要です - + CENTER302temperature(): %1 bytes received but 7 needed CENTER302temperature(): %1 バイト受信しましたが、 7 必要です - + CENTER303temperature(): %1 bytes received but 8 needed CENTER303temperature(): %1 バイト受信しましたが、 8 必要です - + CENTER306temperature(): %1 bytes received but 10 needed CENTER306temperature(): %1 バイト受信しましたが、 10 必要です - + CENTER309temperature(): %1 bytes received but 45 needed CENTER309temperature(): %1 バイト受信しましたが、 45 必要です - + Arduino could not set channels Arduino はチャンネルをセットできませんでした - + Arduino could not set temperature unit Arduino は温度ユニットをセットできませんでした - + Serial Exception: invalid comm port シリアルポートの例外 : 無効なシリアルポート - + Serial Exception: timeout シリアルポートの例外 : タイムアウト @@ -1833,37 +1833,37 @@ END デバイスエラー - + Segment values could not be written into PID セグメントの値を PID に書き込めませんでした - + RampSoak could not be changed RampSoak を変更できませんでした - + pid.readoneword(): %1 RX bytes received (7 needed) for unit ID=%2 pid.readoneword(): ユニットID=%2 は %1 RX バイト受信(7 必要) - + Univariate: no profile data available - + Polyfit: no profile data available - + MS6514temperature(): %1 bytes received but 16 needed - + HH806AUtemperature(): %1 bytes received but 16 needed HH806AUtemperature(): %1 バイト受信しましたが、 14 必要です {806A?} {1 ?} {16 ?} @@ -1873,7 +1873,7 @@ END - + Arduino could not set filters @@ -1934,147 +1934,147 @@ END Form Caption - + Extras エクストラ - + Roast Properties 焙煎プロパティー - + Artisan Platform Artisan の実行環境 - + Settings Viewer 設定ビューアー - + Serial Log シリアルポートログ - + Error Log エラーログ - + Message History メッセージ履歴 - + Keyboard Autosave [a] キーボードオートセーブ [a] - + AutoSave Path オートセーブパスの参照 - + Axes グラフパーツ - + Roast Calculator 焙煎計算機 - + Events イベント - + Roast Phases 焙煎フェーズ - + Cup Profile カッププロファイル - + Profile Background プロファイルの背景 - + Statistics 統計 - + Designer Config デザイナー構成 - + Manual Temperature Logger 手動による温度記録 - + Serial Ports Configuration シリアルポート構成 - + Device Assignment デバイスの割り当て - + Colors カラー - + Wheel Graph Editor ホイールグラフエディタ - + Alarms アラーム - + Fuji PXR PID Control 富士電機PXR PID Control - + Fuji PXG PID Control 富士電機PXG PID Control - + Delta DTA PID Control Delta DTA PID Control - + Arduino Control - + Volume Calculator - + Tare Setup @@ -2082,247 +2082,247 @@ END GroupBox - + Curves カーブ - + LCDs LCDs - + HUD HUD - + Input Filters 入力フィルタ - + Interpolate Interpolate - + Univariate Univariate - + Appearance 外観 - + Resolution 解像度 - + Sound サウンド - + Times 時間 - + Time Axis 時間軸 - + Temperature Axis 温度軸 - + DeltaBT/DeltaET Axis DeltaBT/DeltaET 軸 - + Legend Location 凡例の表示位置 - + Grid グリッド - + Rate of Change 変化率の算出 - + Temperature Conversion 温度単位の変換 - + Weight Conversion 重量単位の変換 - + Volume Conversion 容積単位の変換 - + Event Types イベントタイプ - + Default Buttons デフォルトボタン - + Management 操作 - + Evaluation 評価 - + Display 表示 - + Initial Settings 初期設定 - + Input 1 入力 1 - + Input 2 入力 2 - + Input 3 入力 3 - + Input 4 入力 4 - + PID PID - + Arduino TC4 Arduino TC4 - + External Program 外部プログラム - + Symbolic Assignments シンボルの割り当て - + Timer LCD タイマー LCD - + ET LCD ET LCD - + BT LCD BT LCD - + DeltaET LCD DeltaET LCD - + DeltaBT LCD DeltaBT LCD - + Extra Devices / PID SV LCD エクストラデバイス / PID SV LCD - + Label Properties ラベルプロパティ - + Polyfit - + Look - + Network - + p-i-d - + Set Value - + Phidget IO - + Phidgets 1045 - + Phidgets 1046 RTD - + WebLCDs @@ -2332,12 +2332,12 @@ END サンプリング間隔 - + Phidgets 1048/1051 - + Sampling @@ -2533,12 +2533,12 @@ END 度/分 - + ET ET - + BT BT @@ -2553,42 +2553,42 @@ END DeltaBT - + at at - + CHARGE CHARGE - + DRY END DRY END - + FC START FC START - + FC END FC END - + SC START SC START - + SC END SC END - + DROP DROP @@ -2628,7 +2628,7 @@ END BT=%1-%2 (%3) ET=%4-%5 (%6) T=%7 RoR=%8d/m ETBTa=%9 [%11-%12] - + Time 時間 @@ -2663,32 +2663,32 @@ END Event #<b>%1 </b> - + City City - + City+ City+ - + Full City Full City - + Full City+ Full City+ - + Light French Light French - + French French @@ -2698,7 +2698,7 @@ END ET ターゲット %2 に到達まで %1 - + at %1 %1 で @@ -2708,192 +2708,192 @@ END BT ターゲット %2 に到達まで %1 - + %1 after FCs FCs 後の %1 - + %1 after FCe FCe 後の %1 - + ET - BT = %1 ET - BT = %1 - + ET - BT = %1%2 ET - BT = %1%2 - + ET Target 1 ET ターゲット 1 - + BT Target 1 BT ターゲット 1 - + ET Target 2 ET ターゲット 2 - + BT Target 2 BT ターゲット 2 - + Mode モード - + ET p-i-d 1 ET p-i-d 1 - + Smooth Deltas スムースデルタ - + Smooth Curves スムースカーブ - + min 下限 - + max 上限 - + Y(x) Y(x) - + COOL COOL - + Title タイトル - + Date 日時 - + Beans - + Weight 重さ - + in 焙煎前 - + out 焙煎後 - + % % - + Volume 体積 - + Density 比重 - + per per - + Bean Size 豆サイズ - + mm mm - + Whole Color 豆の色 - + Ground Color 粉の色 - + Moisture Greens 保管状態 - + % % - + Ambient Conditions 周囲状態 - + Roaster 焙煎機 - + Operator オペレーター - + Roasting Notes 焙煎ノート - + Cupping Notes カッピングノート - + Ambient Source 「周囲」のソース @@ -2903,92 +2903,92 @@ END 焙煎前比重 : %1 g/l ⇒ 焙煎後比重 : %2 g/l - + (%1 g/l) (%1 g/l) - + Number of errors found %1 %1 個のエラー - + Max 最大 - + Min 最小 - + Rotation 回転 - + Initial Max 初期最大 - + Step ステップ - + Style スタイル - + Width 線幅 - + Opaqueness 不透明度 - + Enter two times along profile プロファイルに沿って2つの時間を入力してください - + Start (00:00) 開始時間 (00:00) - + End (00:00) 終了時間 (00:00) - + Fahrenheit 華氏 (F) - + Celsius 摂氏 (C) - + Time syntax error. Time not valid 時間構文エラー: 時間が正しくありません - + Error: End time smaller than Start time エラー: 終了時間が開始時間より小さい - + Best approximation was made from %1 to %2 最も近い値: %1 ~ %2 から求めました @@ -2998,392 +2998,392 @@ END 度/秒 = %1 度/分 = <b>%2<> - + No profile found プロファイルがありません - + Bars バー - + Color カラー - + Marker マーカー - + Thickness 線幅 - + Opacity 不透明度 - + Size サイズ - + Max buttons per row 列中のボタンの数 - + Color Pattern カラーパターン - + palette # パターン # - + Event イベント - + Action アクション - + Command コマンド - + Offset オフセット - + Factor ファクター - + Drying Drying - + Maillard Maillard - + Development Development - + Default デフォルト - + Aspect Ratio 縦横比 - + ET Color ET カラー - + BT Color BT カラー - + DeltaET Color DeltaET カラー - + DeltaBT Color DeltaBT カラー - + Text Warning 文字による警告 - + sec - + Cooling Cooling - + Curviness カーブ強度 - + Events Playback イベントプレーバック - + Comm Port ポート - + Baud Rate 通信速度 - + Byte Size データー長 - + Parity パリティービット - + Stopbits ストップビット - + Timeout タイムアウト - + Settings for non-Modbus devices Modbus デバイス以外の設定 - + Slave スレーブ - + Register レジスタ - + Float float型 - + Function ファンクション - + Device デバイス - + Control ET Control ET - + Read BT Read BT - + Type タイプ - + RS485 Unit ID RS485 ユニットID - + ET Channel ET チャンネル - + BT Channel BT チャンネル - + AT Channel AT チャンネル - + ET Y(x) ET Y(x) - + BT Y(x) BT Y(x) - + Ratio 比率 - + Text テキスト - + Edge 境界 - + Line 線幅 - + Color pattern カラーパターン - + dg dg - + Enter description 記述の入力 - + Ramp Soak HH:MM<br>(1-4) Ramp Soak (時:分)<br>(1-4) - + Ramp Soak HH:MM<br>(5-8) Ramp Soak (時:分)<br>(5-8) - + Ramp/Soak Pattern Ramp/Soak パターン - + WARNING 警告 - + Writing eeprom memory EEPROMメモリへ書き込む - + <u>Max life</u> 10,000 writes <u>限界寿命は</u> 10,000 書き換え程度 - + Infinite read life. 読み込みに限界寿命はありません。 - + After <u>writing</u> an adjustment,<br>never power down the pid<br>for the next 5 seconds <br>or the pid may never recover. 調整事項の<u>書き込み</u>後、<br>5秒間は決してPIDの<br>電源を落さないで下さい、<br> PIDが回復しなくなる場合があります。 - + Read operations manual 操作マニュアルを読む - + ET Thermocouple type ET 熱電対タイプ - + BT Thermocouple type BT 熱電対タイプ - + NOTE: BT Thermocouple type is not stored in the Artisan settings 注: BT の熱電対タイプが Artisan の設定に保存されていません - + Artisan uses 1 decimal point Artisan は小数点以下第一位までを使用します - + Ramp Soak (MM:SS)<br>(1-7) Ramp Soak (分:秒)<br>(1-7) - + Ramp Soak (MM:SS)<br>(8-16) Ramp Soak (分:秒)<br>(8-16) - + Pattern パターン - + SV (7-0) SV (7-0) - + Write 書込み - + P P - + I I - + D D @@ -3393,12 +3393,12 @@ END 注: BT の熱電対タイプが Artisan の設定に保存されていません - + Artisan Fuji PXG uses MINUTES:SECONDS units in Ramp/Soaks Artisan 富士電気PXG は Ramp/Soaks で「分:秒」単位を使用します - + SV SV @@ -3423,22 +3423,22 @@ END - + Start - + End - + Path Effects - + Font @@ -3468,12 +3468,12 @@ END 記録を開始 - + Prefix - + Source ソース @@ -3483,77 +3483,77 @@ END - + Window - + Cycle - + Lookahead - + Manual - + Ramp/Soak - + Background 背景 - + SV Buttons - + SV Slider - + Coarse - + Host - + Port - + HUD Button - + Raw - + ServerId: - + Password: @@ -3588,12 +3588,12 @@ END - + Moisture Roasted - + Density in: %1 g/l => Density out: %2 g/l @@ -3618,112 +3618,112 @@ END - + <b>%1</b> %2/sec, <b>%3</b> %4/min - + Async - + Change - + Gain - + Rate - + Wiring - + Delta Span - + Unit - + ml ml - + Unit Weight - + g g - + Kg Kg - + l l - + in 焙煎前 - + out 焙煎後 - + Moisture loss: %1% Organic loss: %2% - + Filter - + Emissivity - + ON ON - + OFF OFF - + %1 to reach ET %2 - + %1 to reach BT %2 @@ -3733,17 +3733,17 @@ END - + XT Color - + XT - + current palette @@ -3789,52 +3789,52 @@ END Marker - + Circle 円形 - + Square 四角形 - + Pentagon 五角形 - + Diamond ダイア型 - + Star 星型 - + Hexagon 1 六角形1 - + Hexagon 2 六角形2 - + + - + x × - + None 無し @@ -4466,7 +4466,7 @@ Profile missing [CHARGE] or [DROP] 新しいプロファイルが作成されました - + Open Wheel Graph ホイールグラフを開く @@ -4626,7 +4626,7 @@ Profile missing [CHARGE] or [DROP] ディレクトリを選択 - + No profile found プロファイルがありません @@ -4733,152 +4733,152 @@ Continue? 秒数 - + Alarm Config アラーム構成 - + Alarms are not available for device None デバイスがないのでアラームは利用できません - + Switch Language インターフェース言語の切り替え - + Language successfully changed. Restart the application. インターフェース言語を切り替えました。アプリケーションをリスタートしてください。 - + Import K202 CSV K202 CSV の取り込み - + K202 file loaded successfully K202 ファイルを正しくロードしました - + Import K204 CSV K204 CSV の取り込み - + K204 file loaded successfully K204 ファイルを正しくロードしました - + Import HH506RA CSV HH506RA CSV の取り込み - + HH506RA file loaded successfully HH506RA ファイルを正しくロードしました - + Save Graph as PNG グラフを PNG 形式で保存 - + %1 size(%2,%3) saved %1 サイズ(%2 %3)を保存しました - + Save Graph as SVG グラフを SVG 形式で保存 - + %1 saved %1 は保存されました - + Invalid Wheel graph format ホイールグラフ形式ではありません - + Wheel Graph succesfully open ホイールグラフを開きました - + Return the absolute value of x. x の絶対値を返します。 - + Return the arc cosine (measured in radians) of x. x の逆コサイン(ラジアン)を返します。 - + Return the arc sine (measured in radians) of x. x の逆サイン(ラジアン)を返します。 - + Return the arc tangent (measured in radians) of x. x の逆タンジェント(ラジアン)を返します。 - + Return the cosine of x (measured in radians). x のコサイン(ラジアン)を返します。 - + Convert angle x from radians to degrees. 角度 x をラジアンから度数(degrees)に変換します。 - + Return e raised to the power of x. e (e は自然対数の底)の x 乗を返します。 - + Return the logarithm of x to the given base. 与えられた底で x の対数を返します。 - + Return the base 10 logarithm of x. 底を 10 とする x の対数を返します。 - + Return x**y (x to the power of y). x**y (x の y 乗)を返します。 - + Convert angle x from degrees to radians. 角度 x を度数(degrees)からラジアンに変換します。 - + Return the sine of x (measured in radians). x のサイン(ラジアン)を返します。 - + Return the square root of x. x の平方根を返します。 - + Return the tangent of x (measured in radians). x のタンジェント(ラジアン)を返します。 @@ -4913,122 +4913,122 @@ Continue? 以前の エクストラ #2 T2 値 - + MATHEMATICAL FUNCTIONS 数 学 関 数 - + SYMBOLIC VARIABLES シ ン ボ リ ッ ク 変 数 - + Symbolic Functions シンボリック関数 - + Save Palettes パレットを保存 - + Palettes saved パレットは保存されました - + Invalid palettes file format パレットファイル形式ではありません - + Palettes loaded パレットはロードされました - + Load Palettes パレットをロード - + Alarms loaded アラームはロードされました - + Interpolation failed: no profile available 補間に失敗: プロファイルがありません - + Sound turned ON サウンドを ON に - + Sound turned OFF サウンドを OFF に - + [ET target 1 = %1] [BT target 1 = %2] [ET target 2 = %3] [BT target 2 = %4] [ETターゲット 1 = %1] [BTターゲット 1 = %2] [ETターゲット 2 = %3] [BTターゲット 2 = %4] - + Event #%1 added Event #%1 は追加されました - + Event #%1 deleted Event #%1 は削除されました - + No events found イベントがありません - + Roast properties updated but profile not saved to disk 焙煎プロパティは更新されましたが、プロファイルはディスクに保存されていません - + Autosave ON. Prefix: %1 オートセーブ ON プレフィクス: %1 - + Autosave OFF オートセーブ OFF - + xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) - + <b>Event</b> hide or show the corresponding slider <b>イベント</b> 対応するスライダーの表示/非表示 - + <b>Action</b> Perform an action on slider release <b>アクション</b> スライダーリリースに実行されるアクション - + <b>Command</b> depends on the action type ('{}' is replaced by <i>value</i>*<i>factor</i> + <i>offset</i>) <b>コマンド</b> 「アクション」毎に異なる('{}' は <i>value</i>*<i>factor</i> + <i>offset</i> に置換) - + Serial Command: ASCII serial command or binary a2b_uu(serial command) シリアルコマンド : ASCII かバイナリ a2b_uu のシリアルコマンド @@ -5038,47 +5038,47 @@ Continue? Modbus コマンド: write([スレーブID, レジスタ, 値],..,[スレーブID, レジスタ, 値]) ID を与えて指定のスレーブ内レジスタに値を書き込む - + DTA Command: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating DTA Command: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating - + <b>Offset</b> added as offset to the slider value <b>オフセット</b> スライダー値にオフセット値として加算される - + <b>Factor</b> multiplicator of the slider value <b>ファクター</b> スライダー値に乗算される - + Event custom buttons イベントカスタムボタン - + Event configuration saved イベントの構成を保存 - + Found empty event type box イベントタイプのボックスが空です - + <b>Button Label</b> Enter \n to create labels with multiple lines. <b>ラベル</b> 改行コード(\n)で複数行に渡るボタンラベルを作成。 - + <b>Event Description</b> Description of the Event to be recorded. <b>記述</b> イベント内容の記述として記録される。 - + <b>Event type</b> Type of event to be recorded. <b>タイプ</b> イベントタイプとして記録される。 @@ -5088,127 +5088,127 @@ Continue? <b>値</b> イベントの値(1-10)として記録される - + <b>Action</b> Perform an action at the time of the event <b>アクション</b> そのイベントで実行されるアクション - + <b>Documentation</b> depends on the action type ('{}' is replaced by the event value): <b>関連文書</b> 「アクション」毎に異なる('{}'はイベントの値に置き換え): - + Call Program: A program/script path (absolute or relative) プログラム呼び出し : プログラム/スクリプトへのパス(絶対/相対パス) - + Multiple Event: Adds events of other button numbers separated by a comma: 1,2,3, etc. 複合イベント : カンマ区切りのボタン番号(1,2,3,...等)で複数のイベントを追加。 - + <b>Button Visibility</b> Hides/shows individual button <b>可視性</b> 個々のボタンの表示/非表示 - + <b>Keyboard Shorcut: </b> [b] Hides/shows Extra Button Rows <b>キーボードショートカット: </b> [b] エクストラボタン列の表示/非表示 - + Phases changed to %1 default: %2 フェーズは %1 に変更されました、デフォルト: %2 - + Background profile not found 背景用プロファイルが見つかりません - + Background does not match number of labels 背景のラベルの数が合いません - + Playback Aid set ON at %1 secs プレーバック AIDを %1 秒でONにセット - + No profile background found プロファイルの背景が見つかりません - + Reading background profile... 背景用プロファイルを読み込んでいます... - + Not enough time points for an ET curviness of %1. Set curviness to %2 ET のカーブ精度 %1 では時間ポイントが足りないので、カーブ精度を %2 にセット - + Designer Config デザイナー構成 - + Not enough time points for an BT curviness of %1. Set curviness to %2 BT のカーブ精度 %1 では時間ポイントが足りないので、カーブ精度を %2 にセット - + CHARGE CHARGE - + DRY END DRY END - + FC START FC START - + FC END FC END - + SC START SC START - + SC END SC END - + DROP DROP - + Incorrect time format. Please recheck %1 time 時間書式が不正です。 %1 時間を再確認してください - + Times need to be in ascending order. Please recheck %1 time 時間は昇順である必要があります。 %1 時間を再確認してください - + Designer has been reset デザイナーはリセットされました @@ -5268,12 +5268,12 @@ Continue? 少数のデバイスでは二つのレジスタに 4 バイト float 型データーを保持します。 - + Tick the Float flag in this case. この場合は「float型」フラグをチェックします。 - + Serial Port Settings: %1, %2, %3, %4, %5, %6 シリアルポート設定: %1, %2, %3, %4, %5, %6 @@ -5283,137 +5283,137 @@ Continue? ポートスキャンはこのプラットホームではサポートされていません - + External program 外部プログラム - + Device not set デバイスがセットされていません - + PID to control ET set to %1 %2 ; PID to read BT set to %3 %4 PID to control ET set to %1 %2 ; PID to read BT set to %3 %4 - + Device set to %1. Now, check Serial Port settings デバイスを %1 にセットし、シリアルポートの設定を確認 - + Device set to %1. Now, chose serial port デバイスを %1 にセットし、シリアルポートを選択しました - + Device set to CENTER 305, which is equivalent to CENTER 306. Now, chose serial port デバイスをCENTER 305にセットし(CENTER306と同等)、シリアルポートを選択しました - + Device set to %1, which is equivalent to CENTER 309. Now, chose serial port デバイスを %1 にセットし(CENTER309と同等)、シリアルポートを選択しました - + Device set to %1, which is equivalent to CENTER 303. Now, chose serial port デバイスを %1 にセットし(CENTER303と同等)、シリアルポートを選択しました - + Device set to %1, which is equivalent to CENTER 306. Now, chose serial port デバイスを %1 にセットし(CENTER306と同等)、シリアルポートを選択しました - + Device set to %1, which is equivalent to Omega HH506RA. Now, chose serial port デバイスを %1 にセットし(Omega HH506RAと同等)、シリアルポートを選択しました - + Device set to %1, which is equivalent to Omega HH806AU. Now, chose serial port デバイスを %1 にセットし(Omega HH806AUと同等)、シリアルポートを選択しました - + Device set to %1 デバイスを %1 にセット - + Device set to %1%2 デバイスを %1%2 にセット - + Device set to %1, which is equivalent to CENTER 302. Now, chose serial port デバイスを %1 にセットし(CENTER302と同等)、シリアルポートを選択しました - + Color of %1 set to %2 カラー %1 を %2 にセット - + Save Wheel graph セーブホイールグラフ - + Wheel Graph saved ホイールグラフは保存されました - + Load Alarms アラームをロード - + Save Alarms アラームをセーブ - + <b>Status:</b> activate or deactive alarm <b>状態:</b> アラームの有効/無効 - + <b>If Alarm:</b> alarm triggered only if the alarm with the given number was triggered before. Use 0 for no guard. <b>IFアラーム:</b> アラームは「IFアラーム」に指定された回数を超えている場合のみ起動。0 は無条件。 - + <b>From:</b> alarm only triggered after the given event <b>From:</b> アラームは「From」に指定されたイベント後のみ起動 - + <b>Time:</b> if not 00:00, alarm is triggered mm:ss after the event 'From' happend <b>時間:</b> 00:00 以外の場合、イベント「From」後で指定時間(分:秒[mm:ss])が過ぎるとアラーム起動 - + <b>Source:</b> the temperature source that is observed <b>ソース:</b> 温度監視の情報源 - + <b>Condition:</b> alarm is triggered if source rises above or below the specified temperature <b>条件:</b> 「ソース」の閾値「温度」対するアラームの起動条件(上回るか/下回るか) - + <b>Temp:</b> the speficied temperature limit <b>温度:</b> 温度監視の閾値を指定 - + <b>Action:</b> if all conditions are fulfilled the alarm triggeres the corresponding action <b>アクション:</b> 全ての条件が満たされアラームが起動した時に実行されるアクション @@ -5423,79 +5423,79 @@ Continue? <b>記述:</b> 「ポップアップ」では表示テキスト、「プログラム呼び出し」ではプログラムの名前、「イベントボタン」ではボタン番号(0 の場合は COOL イベントが起動)、各「スライダー」ではスライダーの新しい値 - + <b>NOTE:</b> each alarm is only triggered once <b>注意:</b> 各アラームは一度だけ起動します - + OFF OFF - + CONTINUOUS CONTROL CONTINUOUS CONTROL - + ON ON - + STANDBY MODE STANDBY MODE - + The rampsoak-mode tells how to start and end the ramp/soak rampsoak-モードは、ramp/soak を開始および終了する方法について説明します - + Your rampsoak mode in this pid is: あなたの rampsoak モードのPIDは: - + Mode = %1 モード = %1 - + Start to run from PV value: %1 実行開始の PV値: %1 - + End output status at the end of ramp/soak: %1 ステータス出力を終了、終了時の ramp/soak: %1 - + Output status while ramp/soak operation set to OFF: %1 ramp/soak 操作が OFF の間の出力ステータス: %1 - + Repeat Operation at the end: %1 繰り返し操作を終わります: %1 - + Recomended Mode = 0 推奨モード = 0 - + If you need to change it, change it now and come back later If you need to change it, change it now and come back later - + Use the Parameter Loader Software by Fuji if you need to @@ -5504,7 +5504,7 @@ Repeat Operation at the end: %1 - + Continue? 続けますか? @@ -5514,52 +5514,52 @@ Repeat Operation at the end: %1 RampSoak モード - + Current sv = %1. Change now to sv = %2? 現在は sv = %1 です。 sv = %2 に変更しますか? - + Change svN svN を変更 - + Current pid = %1. Change now to pid =%2? 現在は pid = %1 ですが、pid = %2 に変更しますか? - + Ramp Soak start-end mode Ramp Soak start-end モード - + Pattern changed to %1 パターンを %1 に変更 - + Pattern did not changed パターンは変更されませんでした - + Ramp/Soak was found ON! Turn it off before changing the pattern Ramp/Soak を ON で見つけました!パターンを変更する前にオフにします - + Ramp/Soak was found in Hold! Turn it off before changing the pattern Ramp/Soak を Hold で見つけました!パターンを変更する前にオフにします - + Activate PID front buttons PIDフロントボタンをアクティブにします - + Remember SV memory has a finite life of ~10,000 writes. @@ -5570,52 +5570,52 @@ Proceed? 続行しますか? - + RS ON RS ON - + RS OFF RS OFF - + RS on HOLD RS は HOLD - + PXG sv#%1 set to %2 PXG sv#%1 を %2 にセット - + PXR sv set to %1 PXR sv を %1 にセット - + SV%1 changed from %2 to %3) SV%1 は %2 から %3 に変更されました) - + Unable to set sv%1 sv%1 をセットすることができません - + SV changed from %1 to %2 SVは %1 から %2 に変更されました - + Unable to set sv sv をセットすることができません - + Unable to set new sv 新しい sv をセットすることができません @@ -5630,27 +5630,27 @@ Proceed? - + Save Graph as PDF - + Phidget Temperature Sensor 4-input attached - + Phidget Bridge 4-input attached - + Device set to %1. Now, chose Modbus serial port - + <b>But Not:</b> alarm triggered only if the alarm with the given number was not triggered before. Use 0 for no guard. @@ -5666,17 +5666,17 @@ Continue? - + <b>Description:</b> the text of the popup, the name of the program, the number of the event button or the new value of the slider - + Load PID Settings - + Save PID Settings @@ -5696,12 +5696,12 @@ Continue? - + current background ET - + current background BT @@ -5711,27 +5711,27 @@ Continue? - + Phidget 1018 IO attached - + Load Ramp/Soak Table - + Save Ramp/Soak Table - + PID turned on - + PID turned off @@ -5741,72 +5741,72 @@ Continue? - + Return the minimum of x and y. - + Return the maximum of x and y. - + The MODBUS device corresponds to input channels - + 1 and 2.. The MODBUS_34 extra device adds - + input channels 3 and 4. Inputs with slave - + id set to 0 are turned off. Modbus function 3 - + 'read holding register' is the standard. - + Modbus function 4 triggers the use of 'read - + 2 byte integer registers. A temperature of 145.2C - + is often sent as 1452. In that case you have to - + use the symbolic assignment 'x/10'. Few devices - + hold data as 4 byte floats in two registers. - + Yocto Thermocouple attached - + Yocto PT100 attached @@ -5816,92 +5816,92 @@ Continue? - + Phidget Temperature Sensor IR attached - + input register'. Input registers (fct 4) usually - + are from 30000-39999. Most devices hold data in - + IO Command: set(n,0), set(n,1), toggle(n) to set Phidget IO digital output n - + ET value - + BT value - + Extra #1 T1 value - + Extra #1 T2 value - + Extra #2 T1 value - + Extra #2 T2 value - + Yn holds values sampled in the actual interval if refering to ET/BT or extra channels from devices listed before, otherwise Yn hold values sampled in the previous interval - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) writes values to the registers in slaves specified by the given ids - + <b>Event value</b> Value of event (1-100) to be recorded - + Phidget Temperature Sensor IR detached - + Phidget Temperature Sensor 4-input detached - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) or wcoils(slaveId,register,&lt;bool&gt;) writes values to the registers in slaves specified by the given ids - + Phidget Bridge 4-input detached - + Phidget 1018 IO detached @@ -5910,21 +5910,16 @@ Continue? Hottop control turned off - - - Hottop control turned on - - Radio Button - + Meter メーター - + PID PID @@ -5934,12 +5929,12 @@ Continue? Arduino TC4 - + Program プログラム - + TC4 @@ -6038,132 +6033,132 @@ Continue? StatusBar - + Playback Aid set OFF プレーバック AID を OFF - + Ready 準備完了 - + Decimal position successfully set to 1 小数部の桁を1 にセット - + Problem setting decimal position 小数部の桁の設定に問題があります - + Problem setting thermocouple type 熱電対タイプの設定に問題があります - + setting autotune... autotune を設定... - + Autotune successfully turned OFF Autotune は OFF に切り替わりました - + Autotune successfully turned ON Autotune は ON に切り替わりました - + wait... wait... - + PID OFF PID OFF - + PID ON PID ON - + SV successfully set to %1 SV を %1 にセット - + Empty SV box SV ボックスが空です - + Unable to read SV sv を読むことができません - + Ramp/Soak operation cancelled Ramp/Soak 操作はキャンセルされました - + No RX data RX データーがありません - + RS ON RS ON - + Need to change pattern mode... パターンモードの変更が必要... - + Pattern has been changed. Wait 5 secs. パターンは変更されました。 5秒待ってください。 - + Pattern could not be changed パターンは変更できませんでした - + RampSoak could not be changed RampSoak を変更できませんでした - + RS OFF RS OFF - + RS successfully turned OFF RS は OFF に切り替わりました - + setONOFFrampsoak(): Ramp Soak could not be set OFF setONOFFrampsoak(): Ramp Soak を OFF に出来ませんでした - + getsegment(): problem reading ramp getsegment(): ramp の読み込みに問題があります - + getsegment(): problem reading soak getsegment(): soak の読み込みに問題があります @@ -6173,12 +6168,12 @@ Continue? getallsegment(): R/S の読み込みに問題があります - + Finished reading Ramp/Soak val. Ramp/Soak の値読み込みは終了しました。 - + Finished reading pid values pid の値読み込みは終了しました @@ -6188,52 +6183,52 @@ Continue? %1 を pid に送信 - + setpid(): There was a problem setting %1 setpid(): 設定に問題があります %1 - + Ramp/Soak successfully written Ramp/Soak は正しく書き込まれました - + Time Units successfully set to MM:SS 時間単位を「分:秒 (MM:SS)」にセット - + Problem setting time units 時間単位の設定に問題があります - + Thermocouple type successfully set 熱電対タイプをセット - + SV%1 set to %2 SV%1 を %2 にセット - + Problem setting SV SV の設定に問題があります - + Cancelled svN change svN の変更はキャンセルされました - + PID already using sv%1 PID は sv%1 をすでに使用 - + setNsv(): bad response setNsv(): レスポンスが悪い @@ -6243,147 +6238,147 @@ Continue? pid%1 を %2 に変更 - + setNpid(): bad confirmation setNpid(): bad confirmation - + Cancelled pid change pid の変更はキャンセルされました - + PID was already using pid %1 PID は pid %1 をすでに使用 - + setNpid(): Unable to set pid %1 setNpid(): pid %1 をセットできません - + SV%1 successfully set to %2 SV%1 を %2 にセット - + setsv(): Unable to set SV setsv(): SV をセットできません - + pid #%1 successfully set to (%2,%3,%4) pid #%1 を (%2,%3,%4) にセット - + pid command failed. Bad data at pid%1 (8,8,8): (%2,%3,%4) pid コマンドが失敗。 不正データー pid%1 (8,8,8): (%2,%3,%4) - + getallpid(): Unable to read pid values getallpid(): pid の値が読み込めません - + PID is using pid = %1 PID は pid = %1 を使用 - + getallpid(): Unable to read current sv getallpid(): 現在の sv から読み込めません - + PID is using SV = %1 PID は SV = %1 を使用 - + Ramp Soak could not be set OFF Ramp Soak を OFF にできませんでした - + PID set to OFF PID を OFF - + PID set to ON PID を ON - + Unable Unable - + No data received データーが受信されませんでした - + Reading Ramp/Soak %1 ... Ramp/Soak %1 を読み込んでいます... - + problem reading Ramp/Soak Ramp/Soak の読み込みに問題があります - + Current pid = %1. Proceed with autotune command? 現在の pid = %1です。 autotune コマンドを続行しますか? - + Autotune cancelled Autotune はキャンセルされました - + UNABLE to set Autotune Autotune をセットすることができません - + SV SV - + Ramp (MM:SS) Ramp (分:秒) - + Soak (MM:SS) Soak (分:秒) - + Work in Progress 処理中 - + sending commands for p%1 i%2 d%3 送信コマンド p%1 i%2 d%3 - + %1 successfully sent to pid - + pid changed to %1 @@ -6391,157 +6386,157 @@ Continue? Tab - + HUD HUD - + Plotter プロッター - + Math 計算 - + UI UI - + General 一般 - + Notes ノート - + Events イベント - + Data データー - + Config 構成 - + Buttons ボタン - + Sliders スライダー - + Palettes パレット - + Style スタイル - + ET/BT ET/BT - + Extra エクストラ - + Modbus Modbus - + Scale はかり - + Extra Devices エクストラデバイス - + Symb ET/BT ET/BT シンボル - + Graph グラフ - + LCDs LCDs - + RS RS - + SV SV - + PID PID - + Set RS RSをセット - + Color カラー - + Quantifiers - + Ramp/Soak - + Phidgets - + Filter - + Espresso @@ -6559,12 +6554,12 @@ Continue? 相対時間 - + ET ET - + BT BT @@ -6624,277 +6619,277 @@ Continue? %1 EVENT #%2 %3%4 - + Time 時間 - + Description 記述 - + Type タイプ - + Value - + Label ラベル - + Action アクション - + Documentation 関連文章 - + Visibility 可視性 - + Color カラー - + Text Color テキストカラー - + Device デバイス - + Comm Port ポート - + Baud Rate 通信速度 - + Byte Size データ長 - + Parity パリティビット - + Stopbits ストップビット - + Timeout タイムアウト - + Color 1 カラー 1 - + Color 2 カラー 2 - + Label 1 ラベル 1 - + Label 2 ラベル 2 - + y1(x) y1(x) - + y2(x) y2(x) - + LCD 1 LCD 1 - + LCD 2 LCD 2 - + Curve 1 カーブ 1 - + Curve 2 カーブ 2 - + Parent ペアレント - + Width - + Opaqueness 不透明度 - + Delete Wheel ホイールを削除 - + Edit Labels ラベル編集 - + Update Labels ラベル更新 - + Properties プロパティ - + Radius 半径範囲 - + Starting angle 開始角度 - + Projection プロジェクション - + Text Size テキストサイズ - + Color Pattern カラーパターン - + Status 状態 - + If Alarm IFアラーム - + From From - + Source ソース - + Condition 条件 - + Temp 温度 - + SV SV - + Ramp HH:MM Ramp 時:分 - + Soak HH:MM Soak 時:分 - + DRY END DRY END - + FC START FC START - + FC END FC END - + SC START SC START - + SC END SC END - + DROP DROP - + COOL COOL @@ -6904,50 +6899,55 @@ Continue? START - + EVENT #%2 %3%4 - + CHARGE CHARGE - + But Not - + DeltaET DeltaET - + DeltaBT DeltaBT - + EVENT #%1 %2%3 - + Beep ビープ音 - + Name - + Weight 重さ + + + Nr + + Textbox @@ -7325,42 +7325,42 @@ Pungency イベントを更新 - + <b>Label</b>= <b>ラベル </b>= - + <b>Description </b>= <b>記述 </b>= - + <b>Type </b>= <b>タイプ </b>= - + <b>Value </b>= <b>値 </b>= - + <b>Documentation </b>= <b>関連文書 </b>= - + <b>Button# </b>= <b>ボタン# </b>= - + Save image using current graph size to a png format 現在のグラフサイズを使い、png 形式で画像を保存 - + linear: linear interpolation cubic: 3rd order spline interpolation nearest: y value of the nearest point @@ -7369,47 +7369,47 @@ cubic: 三次精度スプライン補間法 nearest: 最近傍点の y 値 - + ON/OFF logs serial communication シリアル通信ログの ON/OFF - + Automatic generated name = This text + date + time 自動生成される名前 = このテキスト + 日付 + 時間 - + ON/OFF of automatic saving when pressing keyboard letter [a] キーボードの文字 [a] を押した時の、オートセーブの ON/OFF - + Sets the directory to store batch profiles when using the letter [a] キーボードの文字 [a] を押した時にバッチプロファイルを保存するためのディレクトリをセット - + Allows to enter a description of the last event 最終イベントの「記述」の入力を許可 - + Add new extra Event button 新しいエクストライベントボタンを追加 - + Delete the last extra Event button 最後のエクストライベントボタンを削除 - + Show help ヘルプを表示 - + Backup all palettes to a text file 全てのパターンをテキストファイルにバックアップ @@ -7419,117 +7419,117 @@ nearest: 最近傍点の y 値 全てのパターンをテキストファイルからリストア - + Action Type アクションタイプ - + Action String アクション文字列 - + Aspect Ratio 縦横比 - + Example: 100 + 2*x 例: 100 + 2*x - + Example: 100 + x 例: 100 + x - + Erases wheel parent hierarchy ホイールのペアレントされた階層構造を消去 - + Sets graph hierarchy child->parent instead of parent->child グラフの階層構造 子→親 の代わりに 親→子 をセット - + Increase size of text in all the graph 全てのグラフのテキストサイズを拡大 - + Decrease size of text in all the graph 全てのグラフのテキストサイズを縮小 - + Decorative edge beween wheels 装飾的なホイール間のエッジ - + Line thickness ラインの太さ - + Line color ラインカラー - + Apply color pattern to whole graph グラフ全体にカラーパターンを適用 - + Add new wheel 新しいホイールを追加 - + Rotate graph 1 degree counter clockwise 反時計回りに 1度グラフを回転 - + Rotate graph 1 degree clockwise 時計回りに 1度グラフを回転 - + Save graph to a text file.wg テキストファイル .wg にグラフを保存 - + Sets Wheel graph to view mode ホイールグラフを表示モードにセット - + open graph file.wg グラフファイル .wg を開く - + Close wheel graph editor ホイールグラフエディタを閉じる - + Restore all palettes from a text file - + Clear alarms table - + Interval diff --git a/translations/artisan_ko.ts b/translations/artisan_ko.ts index 219bd8023..8e4597ce5 100644 --- a/translations/artisan_ko.ts +++ b/translations/artisan_ko.ts @@ -132,587 +132,587 @@ END - + Update - + OK - + Cancel - + Color - + Plot - + Background - + Virtual Device - + Save Image - + Help - + Info - + Set - + Defaults - + Order - + Add - + Delete - + in - + out - + Search - + Path - + Save - + Load - + Del - + Align - + Up - + Down - + Left - + Right - + Reset - + Close - + Create - + Select - + Grid - + Title - + Y Label - + X Label - + Drying Phase - + Maillard Phase - + Development Phase - + Cooling Phase - + ET - + BT - + DeltaET - + DeltaBT - + Markers - + Text - + Watermarks - + C Lines - + Grey - + LED - + B/W - + Reset Parents - + Reverse Hierarchy - + + - + - - + Line Color - + < - + > - + Save File - + Save Img - + View Mode - + Open - + Set Color - + All On - + All Off - + Read Ra/So values - + RampSoak ON - + RampSoak OFF - + PID OFF - + PID ON - + Write SV - + SV Buttons ON - + SV Buttons OFF - + Read SV - + Set p - + Set i - + Set d - + Autotune ON - + Autotune OFF - + Read PID Values - + Read - + Set ET PID to 1 decimal point - + Set BT PID to 1 decimal point - + Read RS values - + Write SV1 - + Write SV2 - + Write SV3 - + Write SV4 - + Write SV5 - + Write SV6 - + Write SV7 - + ON SV buttons - + OFF SV buttons - + Read SV (7-0) - + pid 1 - + pid 2 - + pid 3 - + pid 4 - + pid 5 - + pid 6 - + pid 7 - + Set ET PID to MM:SS time units - + Write - + Insert - + Clear - + scan - + Write All - + Write RS values - + Write SV (7-0) - + Read PIDs - + Write PIDs - + Apply - + On - + Off - + calc - + unit - + << - + >> @@ -720,317 +720,317 @@ END CheckBox - + Heavy FC - + Low FC - + Light Cut - + Dark Cut - + Drops - + Oily - + Uneven - + Tipping - + Scorching - + Divots - + DeltaET - + DeltaBT - + Smooth Spikes - + Drop Spikes - + Limits - + Projection - + Show - + Beep - + Delete roast properties on RESET - + Serial Log ON/OFF - + Autosave [a] - + Lock Max - + Button - + Mini Editor - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL END - + Auto Adjusted - + Watermarks - + Background - + Text - + Events - + Playback Aid - + Time - + Bar - + ETBTa - + Evaluation - + Characteristics - + ET - + BT - + Load alarms from profile - + Auto CHARGE - + Auto DROP - + Mark TP - + Phases LCDs - + Auto DRY - + Auto FCs - + Decimal Places - + Modbus Port - + Smooth2 - + Start PID on CHARGE - + Load Ramp/Soak table from profile - + Control Button - + Ratiometric - + Align FCs - + /min - + Alarm Popups - + Lock @@ -1058,477 +1058,477 @@ END - + linear - + newton - + metrics - + thermal - + cubic - + nearest - + g - + Kg - + ml - + l - + ET - + BT - + upper right - + upper left - + lower left - + lower right - + right - + center left - + center right - + lower center - + upper center - + center - + 1 minute - + 2 minute - + 3 minute - + 4 minute - + 5 minute - + solid - + dashed - + dashed-dot - + dotted - + None - + Event #0 - + Event #%1 - + lb - + liter - + gallon - + quart - + pint - + cup - + cm^3 - + Type - + Value - + Serial Command - + Modbus Command - + DTA Command - + Call Program - + OFF - + ON - + Multiple Event - + DeltaBT - + DeltaET - + SV Commands - + Ramp Commands - + little-endian - + grey - + Dark Grey - + Slate Grey - + Light Gray - + Black - + White - + Transparent - + Flat - + Perpendicular - + Radial - + START - + CHARGE - + TP - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL - + below - + above - + Pop Up - + Event Button - + Slider - + classic - + xkcd - + Default - + Humor - + Comic - + DRY - + FCs - + FCe - + SCs - + SCe - + COOL END - + IO Command - + Hottop Heater - + Hottop Fan - + Hottop Command @@ -1594,12 +1594,12 @@ END Directory - + profiles - + other @@ -1607,17 +1607,17 @@ END Error Message - + Exception: - + Value Error: - + IO Error: @@ -1627,137 +1627,137 @@ END - + Unable to move CHARGE to a value that does not exist - + Modbus Error: - + Serial Exception: - + F80h Error - + CRC16 data corruption ERROR. TX does not match RX. Check wiring - + No RX data received - + DTAcommand(): %1 bytes received but 15 needed - + Unable to open serial port - + HH806Wtemperature(): Unable to initiate device - + HH506RAGetID: %1 bytes received but 5 needed - + HH506RAtemperature(): Unable to get id from HH506RA device - + HH506RAtemperature(): %1 bytes received but 14 needed - + CENTER302temperature(): %1 bytes received but 7 needed - + CENTER303temperature(): %1 bytes received but 8 needed - + CENTER306temperature(): %1 bytes received but 10 needed - + CENTER309temperature(): %1 bytes received but 45 needed - + Arduino could not set channels - + Arduino could not set temperature unit - + Serial Exception: invalid comm port - + Serial Exception: timeout - + Segment values could not be written into PID - + RampSoak could not be changed - + pid.readoneword(): %1 RX bytes received (7 needed) for unit ID=%2 - + Univariate: no profile data available - + Polyfit: no profile data available - + MS6514temperature(): %1 bytes received but 16 needed - + HH806AUtemperature(): %1 bytes received but 16 needed @@ -1767,7 +1767,7 @@ END - + Arduino could not set filters @@ -1828,147 +1828,147 @@ END Form Caption - + Extras - + Roast Properties - + Artisan Platform - + Settings Viewer - + Serial Log - + Error Log - + Message History - + Keyboard Autosave [a] - + AutoSave Path - + Axes - + Roast Calculator - + Events - + Roast Phases - + Cup Profile - + Profile Background - + Statistics - + Designer Config - + Manual Temperature Logger - + Serial Ports Configuration - + Device Assignment - + Colors - + Wheel Graph Editor - + Alarms - + Fuji PXR PID Control - + Fuji PXG PID Control - + Delta DTA PID Control - + Arduino Control - + Volume Calculator - + Tare Setup @@ -1976,257 +1976,257 @@ END GroupBox - + Curves - + LCDs - + HUD - + Input Filters - + Interpolate - + Univariate - + Appearance - + Resolution - + Sound - + Times - + Time Axis - + Temperature Axis - + DeltaBT/DeltaET Axis - + Legend Location - + Grid - + Rate of Change - + Temperature Conversion - + Weight Conversion - + Volume Conversion - + Event Types - + Default Buttons - + Management - + Evaluation - + Display - + Initial Settings - + Input 1 - + Input 2 - + Input 3 - + Input 4 - + PID - + Arduino TC4 - + External Program - + Symbolic Assignments - + Timer LCD - + ET LCD - + BT LCD - + DeltaET LCD - + DeltaBT LCD - + Extra Devices / PID SV LCD - + Label Properties - + Polyfit - + Look - + Network - + p-i-d - + Set Value - + Phidget IO - + Phidgets 1045 - + Phidgets 1046 RTD - + WebLCDs - + Phidgets 1048/1051 - + Sampling @@ -2412,12 +2412,12 @@ END Label - + ET - + BT @@ -2432,42 +2432,42 @@ END - + at - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP @@ -2497,7 +2497,7 @@ END - + Time @@ -2522,717 +2522,717 @@ END - + City - + City+ - + Full City - + Full City+ - + Light French - + French - + at %1 - + %1 after FCs - + %1 after FCe - + ET - BT = %1 - + ET - BT = %1%2 - + ET Target 1 - + BT Target 1 - + ET Target 2 - + BT Target 2 - + Mode - + ET p-i-d 1 - + Smooth Deltas - + Smooth Curves - + min - + max - + Y(x) - + COOL - + Title - + Date - + Beans - + Weight - + in - + out - + % - + Volume - + Density - + per - + Bean Size - + mm - + Whole Color - + Ground Color - + Moisture Greens - + % - + Ambient Conditions - + Roaster - + Operator - + Roasting Notes - + Cupping Notes - + Ambient Source - + (%1 g/l) - + Number of errors found %1 - + Max - + Min - + Rotation - + Initial Max - + Step - + Style - + Width - + Opaqueness - + Enter two times along profile - + Start (00:00) - + End (00:00) - + Fahrenheit - + Celsius - + Time syntax error. Time not valid - + Error: End time smaller than Start time - + Best approximation was made from %1 to %2 - + No profile found - + Bars - + Color - + Marker - + Thickness - + Opacity - + Size - + Max buttons per row - + Color Pattern - + palette # - + Event - + Action - + Command - + Offset - + Factor - + Drying - + Maillard - + Development - + Default - + Aspect Ratio - + ET Color - + BT Color - + DeltaET Color - + DeltaBT Color - + Text Warning - + sec - + Cooling - + Curviness - + Events Playback - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Settings for non-Modbus devices - + Slave - + Register - + Float - + Function - + Device - + Control ET - + Read BT - + Type - + RS485 Unit ID - + ET Channel - + BT Channel - + AT Channel - + ET Y(x) - + BT Y(x) - + Ratio - + Text - + Edge - + Line - + Color pattern - + dg - + Enter description - + Ramp Soak HH:MM<br>(1-4) - + Ramp Soak HH:MM<br>(5-8) - + Ramp/Soak Pattern - + WARNING - + Writing eeprom memory - + <u>Max life</u> 10,000 writes - + Infinite read life. - + After <u>writing</u> an adjustment,<br>never power down the pid<br>for the next 5 seconds <br>or the pid may never recover. - + Read operations manual - + ET Thermocouple type - + BT Thermocouple type - + NOTE: BT Thermocouple type is not stored in the Artisan settings - + Artisan uses 1 decimal point - + Ramp Soak (MM:SS)<br>(1-7) - + Ramp Soak (MM:SS)<br>(8-16) - + Pattern - + SV (7-0) - + Write - + P - + I - + D - + Artisan Fuji PXG uses MINUTES:SECONDS units in Ramp/Soaks - + SV @@ -3257,22 +3257,22 @@ END - + Start - + End - + Path Effects - + Font @@ -3302,12 +3302,12 @@ END - + Prefix - + Source @@ -3317,77 +3317,77 @@ END - + Window - + Cycle - + Lookahead - + Manual - + Ramp/Soak - + Background - + SV Buttons - + SV Slider - + Coarse - + Host - + Port - + HUD Button - + Raw - + ServerId: - + Password: @@ -3422,12 +3422,12 @@ END - + Moisture Roasted - + Density in: %1 g/l => Density out: %2 g/l @@ -3452,112 +3452,112 @@ END - + <b>%1</b> %2/sec, <b>%3</b> %4/min - + Async - + Change - + Gain - + Rate - + Wiring - + Delta Span - + Unit - + ml - + Unit Weight - + g - + Kg - + l - + in - + out - + Moisture loss: %1% Organic loss: %2% - + Filter - + Emissivity - + ON - + OFF - + %1 to reach ET %2 - + %1 to reach BT %2 @@ -3567,17 +3567,17 @@ END - + XT Color - + XT - + current palette @@ -3623,52 +3623,52 @@ END Marker - + Circle - + Square - + Pentagon - + Diamond - + Star - + Hexagon 1 - + Hexagon 2 - + + - + x - + None @@ -4280,7 +4280,7 @@ Profile missing [CHARGE] or [DROP] - + Open Wheel Graph @@ -4430,7 +4430,7 @@ Profile missing [CHARGE] or [DROP] - + No profile found @@ -4536,720 +4536,720 @@ Continue? - + Alarm Config - + Alarms are not available for device None - + Switch Language - + Language successfully changed. Restart the application. - + Import K202 CSV - + K202 file loaded successfully - + Import K204 CSV - + K204 file loaded successfully - + Import HH506RA CSV - + HH506RA file loaded successfully - + Save Graph as PNG - + %1 size(%2,%3) saved - + Save Graph as SVG - + %1 saved - + Invalid Wheel graph format - + Wheel Graph succesfully open - + Return the absolute value of x. - + Return the arc cosine (measured in radians) of x. - + Return the arc sine (measured in radians) of x. - + Return the arc tangent (measured in radians) of x. - + Return the cosine of x (measured in radians). - + Convert angle x from radians to degrees. - + Return e raised to the power of x. - + Return the logarithm of x to the given base. - + Return the base 10 logarithm of x. - + Return x**y (x to the power of y). - + Convert angle x from degrees to radians. - + Return the sine of x (measured in radians). - + Return the square root of x. - + Return the tangent of x (measured in radians). - + MATHEMATICAL FUNCTIONS - + SYMBOLIC VARIABLES - + Symbolic Functions - + Save Palettes - + Palettes saved - + Invalid palettes file format - + Palettes loaded - + Load Palettes - + Alarms loaded - + Interpolation failed: no profile available - + Sound turned ON - + Sound turned OFF - + [ET target 1 = %1] [BT target 1 = %2] [ET target 2 = %3] [BT target 2 = %4] - + Event #%1 added - + Event #%1 deleted - + No events found - + Roast properties updated but profile not saved to disk - + Autosave ON. Prefix: %1 - + Autosave OFF - + xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) - + <b>Event</b> hide or show the corresponding slider - + <b>Action</b> Perform an action on slider release - + <b>Command</b> depends on the action type ('{}' is replaced by <i>value</i>*<i>factor</i> + <i>offset</i>) - + Serial Command: ASCII serial command or binary a2b_uu(serial command) - + DTA Command: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating - + <b>Offset</b> added as offset to the slider value - + <b>Factor</b> multiplicator of the slider value - + Event custom buttons - + Event configuration saved - + Found empty event type box - + <b>Button Label</b> Enter \n to create labels with multiple lines. - + <b>Event Description</b> Description of the Event to be recorded. - + <b>Event type</b> Type of event to be recorded. - + <b>Action</b> Perform an action at the time of the event - + <b>Documentation</b> depends on the action type ('{}' is replaced by the event value): - + Call Program: A program/script path (absolute or relative) - + Multiple Event: Adds events of other button numbers separated by a comma: 1,2,3, etc. - + <b>Button Visibility</b> Hides/shows individual button - + <b>Keyboard Shorcut: </b> [b] Hides/shows Extra Button Rows - + Phases changed to %1 default: %2 - + Background profile not found - + Background does not match number of labels - + Playback Aid set ON at %1 secs - + No profile background found - + Reading background profile... - + Not enough time points for an ET curviness of %1. Set curviness to %2 - + Designer Config - + Not enough time points for an BT curviness of %1. Set curviness to %2 - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + Incorrect time format. Please recheck %1 time - + Times need to be in ascending order. Please recheck %1 time - + Designer has been reset - + Tick the Float flag in this case. - + Serial Port Settings: %1, %2, %3, %4, %5, %6 - + External program - + Device not set - + PID to control ET set to %1 %2 ; PID to read BT set to %3 %4 - + Device set to %1. Now, check Serial Port settings - + Device set to %1. Now, chose serial port - + Device set to CENTER 305, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 309. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 303. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH506RA. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH806AU. Now, chose serial port - + Device set to %1 - + Device set to %1%2 - + Device set to %1, which is equivalent to CENTER 302. Now, chose serial port - + Color of %1 set to %2 - + Save Wheel graph - + Wheel Graph saved - + Load Alarms - + Save Alarms - + <b>Status:</b> activate or deactive alarm - + <b>If Alarm:</b> alarm triggered only if the alarm with the given number was triggered before. Use 0 for no guard. - + <b>From:</b> alarm only triggered after the given event - + <b>Time:</b> if not 00:00, alarm is triggered mm:ss after the event 'From' happend - + <b>Source:</b> the temperature source that is observed - + <b>Condition:</b> alarm is triggered if source rises above or below the specified temperature - + <b>Temp:</b> the speficied temperature limit - + <b>Action:</b> if all conditions are fulfilled the alarm triggeres the corresponding action - + <b>NOTE:</b> each alarm is only triggered once - + OFF - + CONTINUOUS CONTROL - + ON - + STANDBY MODE - + The rampsoak-mode tells how to start and end the ramp/soak - + Your rampsoak mode in this pid is: - + Mode = %1 - + Start to run from PV value: %1 - + End output status at the end of ramp/soak: %1 - + Output status while ramp/soak operation set to OFF: %1 - + Repeat Operation at the end: %1 - + Recomended Mode = 0 - + If you need to change it, change it now and come back later - + Use the Parameter Loader Software by Fuji if you need to - + Continue? - + Current sv = %1. Change now to sv = %2? - + Change svN - + Current pid = %1. Change now to pid =%2? - + Ramp Soak start-end mode - + Pattern changed to %1 - + Pattern did not changed - + Ramp/Soak was found ON! Turn it off before changing the pattern - + Ramp/Soak was found in Hold! Turn it off before changing the pattern - + Activate PID front buttons - + Remember SV memory has a finite life of ~10,000 writes. @@ -5257,52 +5257,52 @@ Proceed? - + RS ON - + RS OFF - + RS on HOLD - + PXG sv#%1 set to %2 - + PXR sv set to %1 - + SV%1 changed from %2 to %3) - + Unable to set sv%1 - + SV changed from %1 to %2 - + Unable to set sv - + Unable to set new sv @@ -5312,7 +5312,7 @@ Proceed? - + Save Graph as PDF @@ -5322,22 +5322,22 @@ Proceed? - + Phidget Temperature Sensor 4-input attached - + Phidget Bridge 4-input attached - + Device set to %1. Now, chose Modbus serial port - + <b>But Not:</b> alarm triggered only if the alarm with the given number was not triggered before. Use 0 for no guard. @@ -5353,17 +5353,17 @@ Continue? - + <b>Description:</b> the text of the popup, the name of the program, the number of the event button or the new value of the slider - + Load PID Settings - + Save PID Settings @@ -5383,12 +5383,12 @@ Continue? - + current background ET - + current background BT @@ -5403,27 +5403,27 @@ Continue? - + Phidget 1018 IO attached - + Load Ramp/Soak Table - + Save Ramp/Soak Table - + PID turned on - + PID turned off @@ -5433,72 +5433,72 @@ Continue? - + Return the minimum of x and y. - + Return the maximum of x and y. - + The MODBUS device corresponds to input channels - + 1 and 2.. The MODBUS_34 extra device adds - + input channels 3 and 4. Inputs with slave - + id set to 0 are turned off. Modbus function 3 - + 'read holding register' is the standard. - + Modbus function 4 triggers the use of 'read - + 2 byte integer registers. A temperature of 145.2C - + is often sent as 1452. In that case you have to - + use the symbolic assignment 'x/10'. Few devices - + hold data as 4 byte floats in two registers. - + Yocto Thermocouple attached - + Yocto PT100 attached @@ -5508,92 +5508,92 @@ Continue? - + Phidget Temperature Sensor IR attached - + input register'. Input registers (fct 4) usually - + are from 30000-39999. Most devices hold data in - + IO Command: set(n,0), set(n,1), toggle(n) to set Phidget IO digital output n - + ET value - + BT value - + Extra #1 T1 value - + Extra #1 T2 value - + Extra #2 T1 value - + Extra #2 T2 value - + Yn holds values sampled in the actual interval if refering to ET/BT or extra channels from devices listed before, otherwise Yn hold values sampled in the previous interval - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) writes values to the registers in slaves specified by the given ids - + <b>Event value</b> Value of event (1-100) to be recorded - + Phidget Temperature Sensor IR detached - + Phidget Temperature Sensor 4-input detached - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) or wcoils(slaveId,register,&lt;bool&gt;) writes values to the registers in slaves specified by the given ids - + Phidget Bridge 4-input detached - + Phidget 1018 IO detached @@ -5602,31 +5602,26 @@ Continue? Hottop control turned off - - - Hottop control turned on - - Radio Button - + Meter - + PID - + Program - + TC4 @@ -5715,337 +5710,337 @@ Continue? StatusBar - + Playback Aid set OFF - + Ready - + Decimal position successfully set to 1 - + Problem setting decimal position - + Problem setting thermocouple type - + setting autotune... - + Autotune successfully turned OFF - + Autotune successfully turned ON - + wait... - + PID OFF - + PID ON - + SV successfully set to %1 - + Empty SV box - + Unable to read SV - + Ramp/Soak operation cancelled - + No RX data - + RS ON - + Need to change pattern mode... - + Pattern has been changed. Wait 5 secs. - + Pattern could not be changed - + RampSoak could not be changed - + RS OFF - + RS successfully turned OFF - + setONOFFrampsoak(): Ramp Soak could not be set OFF - + getsegment(): problem reading ramp - + getsegment(): problem reading soak - + Finished reading Ramp/Soak val. - + setpid(): There was a problem setting %1 - + Ramp/Soak successfully written - + Time Units successfully set to MM:SS - + Problem setting time units - + Thermocouple type successfully set - + SV%1 set to %2 - + Problem setting SV - + Cancelled svN change - + PID already using sv%1 - + setNsv(): bad response - + setNpid(): bad confirmation - + Cancelled pid change - + PID was already using pid %1 - + setNpid(): Unable to set pid %1 - + SV%1 successfully set to %2 - + setsv(): Unable to set SV - + pid #%1 successfully set to (%2,%3,%4) - + pid command failed. Bad data at pid%1 (8,8,8): (%2,%3,%4) - + sending commands for p%1 i%2 d%3 - + getallpid(): Unable to read pid values - + PID is using pid = %1 - + getallpid(): Unable to read current sv - + PID is using SV = %1 - + Ramp Soak could not be set OFF - + PID set to OFF - + PID set to ON - + Unable - + No data received - + Reading Ramp/Soak %1 ... - + problem reading Ramp/Soak - + Current pid = %1. Proceed with autotune command? - + Autotune cancelled - + UNABLE to set Autotune - + SV - + Ramp (MM:SS) - + Soak (MM:SS) - + Work in Progress - + %1 successfully sent to pid - + pid changed to %1 - + Finished reading pid values @@ -6053,157 +6048,157 @@ Continue? Tab - + HUD - + Plotter - + Math - + UI - + General - + Notes - + Events - + Data - + Config - + Buttons - + Sliders - + Palettes - + Style - + ET/BT - + Extra - + Modbus - + Scale - + Extra Devices - + Symb ET/BT - + Graph - + LCDs - + RS - + SV - + PID - + Set RS - + Color - + Quantifiers - + Ramp/Soak - + Phidgets - + Filter - + Espresso @@ -6211,335 +6206,340 @@ Continue? Table - + ET - + BT - + Time - + Description - + Type - + Value - + Label - + Action - + Documentation - + Visibility - + Color - + Text Color - + Device - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Color 1 - + Color 2 - + Label 1 - + Label 2 - + y1(x) - + y2(x) - + LCD 1 - + LCD 2 - + Curve 1 - + Curve 2 - + Parent - + Width - + Opaqueness - + Delete Wheel - + Edit Labels - + Update Labels - + Properties - + Radius - + Starting angle - + Projection - + Text Size - + Color Pattern - + Status - + If Alarm - + From - + Source - + Condition - + Temp - + SV - + Ramp HH:MM - + Soak HH:MM - + DRY END - + FC START - + FC END - + SC START - + SC END - + COOL - + EVENT #%2 %3%4 - + DROP - + CHARGE - + But Not - + DeltaET - + DeltaBT - + EVENT #%1 %2%3 - + Beep - + Name - + Weight + + + Nr + + Textbox @@ -6912,204 +6912,204 @@ Pungency - + <b>Label</b>= - + <b>Description </b>= - + <b>Type </b>= - + <b>Value </b>= - + <b>Documentation </b>= - + <b>Button# </b>= - + Save image using current graph size to a png format - + linear: linear interpolation cubic: 3rd order spline interpolation nearest: y value of the nearest point - + ON/OFF logs serial communication - + Automatic generated name = This text + date + time - + ON/OFF of automatic saving when pressing keyboard letter [a] - + Sets the directory to store batch profiles when using the letter [a] - + Allows to enter a description of the last event - + Add new extra Event button - + Delete the last extra Event button - + Show help - + Backup all palettes to a text file - + Action Type - + Action String - + Aspect Ratio - + Example: 100 + 2*x - + Example: 100 + x - + Erases wheel parent hierarchy - + Sets graph hierarchy child->parent instead of parent->child - + Increase size of text in all the graph - + Decrease size of text in all the graph - + Decorative edge beween wheels - + Line thickness - + Line color - + Apply color pattern to whole graph - + Add new wheel - + Rotate graph 1 degree counter clockwise - + Rotate graph 1 degree clockwise - + Save graph to a text file.wg - + Sets Wheel graph to view mode - + open graph file.wg - + Close wheel graph editor - + Restore all palettes from a text file - + Clear alarms table - + Interval diff --git a/translations/artisan_nl.ts b/translations/artisan_nl.ts index ccddef80d..1f4147b9e 100644 --- a/translations/artisan_nl.ts +++ b/translations/artisan_nl.ts @@ -143,97 +143,97 @@ END EIND - + Update - + OK - + Cancel - + Color Kleur - + Plot - + Background Achtergrond - + Virtual Device - + Save Image Sla beeld op - + Help - + Info - + Set Stel in - + Defaults Standaardwaarden - + Order Volgorde - + Add Toevoegen - + Delete Wissen - + in in - + out uit - + Search Zoek - + Path Pad @@ -248,57 +248,57 @@ EIND Herstel vanaf - + Save Opslaan - + Load Laad - + Del Wis - + Align Uitlijnen - + Up Op - + Down Neer - + Left Links - + Right Rechts - + Reset Reset - + Close Sluit - + Create Maak aan @@ -308,352 +308,352 @@ EIND Scan poorten - + Select Kies - + Grid Raster - + Title Titel - + Y Label Y label - + X Label X Label - + Drying Phase Droogfase - + Maillard Phase Maillard fase - + Development Phase Ontwikkelingsfase - + Cooling Phase Afkoelingsfase - + ET - + BT - + DeltaET - + DeltaBT - + Markers Markeringen - + Text Tekst - + Watermarks Waterlijnen - + C Lines - + Grey Grijs - + LED LED - + B/W Z/W - + Reset Parents - + Reverse Hierarchy Keer volgorde om - + + - + - - + Line Color Kleur Lijn - + < - + > - + Save File Sla bestand op - + Save Img Bewaar beeld - + View Mode Bekijken - + Open - + Set Color Stel kleur in - + All On Alles aan - + All Off Alles uit - + Read Ra/So values - + RampSoak ON - + RampSoak OFF - + PID OFF PID UIT - + PID ON PID AAN - + Write SV - + SV Buttons ON SV Knoppen AAN - + SV Buttons OFF SV Knoppen UIT - + Read SV Lees SV - + Set p - + Set i - + Set d - + Autotune ON - + Autotune OFF - + Read PID Values Lees PID Waarden - + Read Lees - + Set ET PID to 1 decimal point Stel ET PID in tot 1 decimaal - + Set BT PID to 1 decimal point Stel BT PID in tot 1 decimaal - + Read RS values Lees RS Waarden - + Write SV1 Schrijf SV1 - + Write SV2 Schrijf SV2 - + Write SV3 Schrijf SV3 - + Write SV4 Schrijf SV4 - + Write SV5 Schrijf SV5 - + Write SV6 Schrijf SV6 - + Write SV7 Schrijf SV7 - + ON SV buttons AAN SV Knoppen - + OFF SV buttons UIT SV Knoppen - + Read SV (7-0) Lees SV (7-0) - + pid 1 - + pid 2 - + pid 3 - + pid 4 - + pid 5 - + pid 6 - + pid 7 @@ -663,87 +663,87 @@ EIND Lees Alles - + Set ET PID to MM:SS time units Stel ET PID in op mm:ss tijdseenheden - + Write Schrijf - + scan - + Insert - + Clear - + Write All - + Write RS values - + Write SV (7-0) - + Read PIDs - + Write PIDs - + Apply - + On - + Off - + calc - + unit - + << - + >> @@ -751,122 +751,122 @@ EIND CheckBox - + Heavy FC Zware FC - + Low FC Lage FC - + Light Cut - + Dark Cut - + Drops Lossingen - + Oily Vettig - + Uneven Ongelijkmatig - + Tipping - + Scorching Aanbrandend - + Divots Stukjes - + DeltaET - + DeltaBT - + Smooth Spikes Uitschieters afvlakken - + Drop Spikes Uitschieters weglaten - + Limits Limieten - + Projection Projectie - + Show Tonen - + Beep Signaal - + Delete roast properties on RESET - + Serial Log ON/OFF - + Autosave [a] Automatisch opslaan [a] - + Lock Max Max vastzetten - + Button Knop - + Mini Editor @@ -876,197 +876,197 @@ EIND Automatische LAAD/LOS - + CHARGE LADEN - + DRY END DROGEN einde - + FC START FC begin - + FC END FC einde - + SC START SC begin - + SC END SC einde - + DROP LOSSEN - + COOL END AFKOELEN einde - + Auto Adjusted Autom. aanpass - + Watermarks Waterlijnen - + Background Achtergrond - + Text Tekst - + Events - + Playback Aid - + Time Tijd - + Bar - + ETBTa - + Evaluation Beoordeling - + Characteristics Karakteristieken - + ET - + BT - + Decimal Places - + Auto CHARGE - + Auto DROP - + Mark TP - + Phases LCDs - + Auto DRY - + Auto FCs - + Load alarms from profile - + Modbus Port - + Smooth2 - + Start PID on CHARGE - + Load Ramp/Soak table from profile - + Control Button - + Ratiometric - + Align FCs - + /min - + Alarm Popups - + Lock @@ -1094,112 +1094,112 @@ EIND Blazer - + linear Lineair - + newton - + metrics Metrisch - + thermal thermisch - + cubic kubieke - + nearest meest nabije - + g - + Kg - + ml - + l - + ET - + BT - + upper right rechts boven - + upper left links boven - + lower left links beneden - + lower right rechts beneden - + right rechts - + center left links midden - + center right rechts midden - + lower center midden onder - + upper center midden boven - + center midden @@ -1209,367 +1209,367 @@ EIND 30 seconden - + 1 minute 1 minuut - + 2 minute 2 minuten - + 3 minute 3 minuten - + 4 minute 4 minuten - + 5 minute 5 minuten - + solid doorgetrokken lijn - + dashed strepen - + dashed-dot streep-punt - + dotted stippellijn - + None Geen - + Event #0 - + Event #%1 - + lb - + liter - + gallon - + quart - + pint - + cup kop - + cm^3 - + Type - + Value Waarde - + Serial Command - + Modbus Command - + DTA Command - + Call Program - + OFF UIT - + ON AAN - + Multiple Event - + DeltaBT - + DeltaET - + SV Commands - + Ramp Commands - + little-endian - + grey grijs - + Dark Grey Donker Grijs - + Slate Grey Lei-grijs - + Light Gray Lichtgrijs - + Black Zwart - + White Wit - + Transparent Transparant - + Flat Plat - + Perpendicular Loodrecht - + Radial Radiaal - + START START - + CHARGE LADEN - + TP - + DRY END DROGEN eind - + FC START FC begin - + FC END FC eind - + SC START SC begin - + SC END SC eind - + DROP LOSSEN - + COOL KOELEN - + below onder - + above boven - + Pop Up - + Event Button Event knop - + Slider - + classic - + xkcd - + Default - + Humor - + Comic - + DRY - + FCs - + FCe - + SCs - + SCe - + COOL END AFKOELEN einde - + IO Command - + Hottop Heater - + Hottop Fan - + Hottop Command @@ -1640,12 +1640,12 @@ EIND tekst bewerken - + profiles profielen - + other overig @@ -1653,17 +1653,17 @@ EIND Error Message - + Exception: - + Value Error: - + IO Error: @@ -1673,137 +1673,137 @@ EIND - + Unable to move CHARGE to a value that does not exist - + Modbus Error: - + Serial Exception: - + F80h Error - + CRC16 data corruption ERROR. TX does not match RX. Check wiring - + No RX data received Geen RX data ontvangen - + DTAcommand(): %1 bytes received but 15 needed - + Unable to open serial port Seriële port opent niet - + HH806Wtemperature(): Unable to initiate device - + HH506RAGetID: %1 bytes received but 5 needed - + HH506RAtemperature(): Unable to get id from HH506RA device - + HH506RAtemperature(): %1 bytes received but 14 needed - + CENTER302temperature(): %1 bytes received but 7 needed - + CENTER303temperature(): %1 bytes received but 8 needed - + CENTER306temperature(): %1 bytes received but 10 needed - + CENTER309temperature(): %1 bytes received but 45 needed - + Arduino could not set channels - + Arduino could not set temperature unit - + Serial Exception: invalid comm port - + Serial Exception: timeout - + Segment values could not be written into PID - + RampSoak could not be changed - + pid.readoneword(): %1 RX bytes received (7 needed) for unit ID=%2 - + Univariate: no profile data available - + Polyfit: no profile data available - + MS6514temperature(): %1 bytes received but 16 needed - + HH806AUtemperature(): %1 bytes received but 16 needed @@ -1813,7 +1813,7 @@ EIND - + Arduino could not set filters @@ -1874,147 +1874,147 @@ EIND Form Caption - + Extras Extra's - + Roast Properties Brand eigenschappen - + Artisan Platform - + Settings Viewer Bekijk instellingen - + Serial Log - + Error Log - + Message History Berichten historie - + Keyboard Autosave [a] - + AutoSave Path AutoSave pad - + Axes Assen - + Roast Calculator Brand Calculator - + Events - + Roast Phases Brand fasen - + Cup Profile Cup profiel - + Profile Background Profiel achtergrond - + Statistics Statistieken - + Designer Config - + Manual Temperature Logger Handmatige Temperatuur logger - + Serial Ports Configuration Configuratie Seriële Poorten - + Device Assignment Apparaat toewijzing - + Colors Kleuren - + Wheel Graph Editor Wiel grafiek bewerken - + Alarms - + Fuji PXR PID Control - + Fuji PXG PID Control - + Delta DTA PID Control - + Arduino Control - + Volume Calculator - + Tare Setup @@ -2022,257 +2022,257 @@ EIND GroupBox - + Curves Krommen - + LCDs - + HUD - + Input Filters - + Interpolate Interpoleren - + Univariate Univariaat - + Appearance Presentatie - + Resolution Resolutie - + Sound Geluid - + Times Tijden - + Time Axis Tijd as - + Temperature Axis Temperatuur as - + DeltaBT/DeltaET Axis - + Legend Location Legenda Locatie - + Grid Raster - + Rate of Change Mate van verandering - + Temperature Conversion Temperatuur conversie - + Weight Conversion Gewicht conversie - + Volume Conversion Volume conversie - + Event Types - + Default Buttons Standaard knoppen - + Management Beheer - + Evaluation Beoordeling - + Display - + Initial Settings Start-instellingen - + Input 1 - + Input 2 - + Input 3 - + Input 4 - + PID - + Arduino TC4 - + External Program Extern Programma - + Symbolic Assignments Symbolische toewijzingen - + Timer LCD - + ET LCD - + BT LCD - + DeltaET LCD - + DeltaBT LCD - + Extra Devices / PID SV LCD - + Label Properties - + Polyfit - + Look - + Network - + p-i-d - + Set Value - + Phidget IO - + Phidgets 1045 - + Phidgets 1046 RTD - + WebLCDs - + Phidgets 1048/1051 - + Sampling @@ -2463,12 +2463,12 @@ EIND Label - + ET - + BT @@ -2483,42 +2483,42 @@ EIND - + at - + CHARGE LADEN - + DRY END - + FC START FC BEGON - + FC END FC EIND - + SC START SC BEGIN - + SC END SC EIND - + DROP LOSSEN @@ -2548,7 +2548,7 @@ EIND - + Time Tijd @@ -2573,717 +2573,717 @@ EIND - + City - + City+ - + Full City - + Full City+ - + Light French - + French - + at %1 - + %1 after FCs - + %1 after FCe - + ET - BT = %1 - + ET - BT = %1%2 - + ET Target 1 - + BT Target 1 - + ET Target 2 - + BT Target 2 - + Mode - + ET p-i-d 1 - + Smooth Deltas Delta's vloeiend verlopen - + Smooth Curves Krommen vloeiend verlopen - + min - + max - + Y(x) - + COOL KOELEN - + Title Titel - + Date Datum - + Beans Bonen - + Weight Gewicht - + in - + out uit - + % - + Volume Hoeveelheid - + Density Dichtheid - + per - + Bean Size Boonmaat - + mm - + Whole Color Kleur Heel - + Ground Color Kleur Gemalen - + Moisture Greens Opslag Condities - + % - + Ambient Conditions Omgevings Condities - + Roaster Brander - + Operator - + Roasting Notes Aantekeningen betr branding - + Cupping Notes - + Ambient Source - + (%1 g/l) - + Number of errors found %1 - + Max - + Min - + Rotation Rotatie - + Initial Max Aanvangs Max - + Step Stap - + Style Stijl - + Width Breedte - + Opaqueness Dekking - + Enter two times along profile - + Start (00:00) - + End (00:00) Stop (00:00) - + Fahrenheit - + Celsius - + Time syntax error. Time not valid - + Error: End time smaller than Start time - + Best approximation was made from %1 to %2 - + No profile found Geen profiel gevonden - + Bars Balken - + Color Kleur - + Marker Markering - + Thickness Dikte - + Opacity Dekking - + Size Maat - + Max buttons per row Max knoppen per rij - + Color Pattern Kleurpatroon - + palette # - + Event - + Action Actie - + Command - + Offset - + Factor - + Drying Drogen - + Maillard - + Development Ontwikkeling - + Default - + Aspect Ratio - + ET Color - + BT Color - + DeltaET Color - + DeltaBT Color - + Text Warning Tekst waarschuwing - + sec - + Cooling Afkoeling - + Curviness Kromming - + Events Playback - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Settings for non-Modbus devices - + Slave - + Register - + Float - + Function - + Device - + Control ET - + Read BT - + Type - + RS485 Unit ID - + ET Channel - + BT Channel - + AT Channel - + ET Y(x) - + BT Y(x) - + Ratio - + Text Tekst - + Edge Hoek - + Line Lijn - + Color pattern Kleurpatroon - + dg - + Enter description Voer beschrijving in - + Ramp Soak HH:MM<br>(1-4) - + Ramp Soak HH:MM<br>(5-8) - + Ramp/Soak Pattern - + WARNING WAARSCHUWING - + Writing eeprom memory - + <u>Max life</u> 10,000 writes - + Infinite read life. - + After <u>writing</u> an adjustment,<br>never power down the pid<br>for the next 5 seconds <br>or the pid may never recover. - + Read operations manual Lees handleiding - + ET Thermocouple type ET Thermokoppel type - + BT Thermocouple type BT Thermokoppel type - + NOTE: BT Thermocouple type is not stored in the Artisan settings LET OP: BT Thermokoppel type is niet opgeslagen in Artisan instellingen - + Artisan uses 1 decimal point Artisan gebruikt 1 decimale punt - + Ramp Soak (MM:SS)<br>(1-7) - + Ramp Soak (MM:SS)<br>(8-16) - + Pattern Patroon - + SV (7-0) - + Write Schrijf - + P - + I - + D - + Artisan Fuji PXG uses MINUTES:SECONDS units in Ramp/Soaks - + SV @@ -3308,12 +3308,12 @@ EIND - + Start - + End Stop @@ -3338,12 +3338,12 @@ EIND - + Path Effects - + Font @@ -3353,12 +3353,12 @@ EIND - + Prefix - + Source @@ -3368,77 +3368,77 @@ EIND - + Window - + Cycle - + Lookahead - + Manual - + Ramp/Soak - + Background Achtergrond - + SV Buttons - + SV Slider - + Coarse - + Host - + Port - + HUD Button - + Raw - + ServerId: - + Password: @@ -3473,12 +3473,12 @@ EIND - + Moisture Roasted - + Density in: %1 g/l => Density out: %2 g/l @@ -3503,112 +3503,112 @@ EIND - + <b>%1</b> %2/sec, <b>%3</b> %4/min - + Async - + Change - + Gain - + Rate - + Wiring - + Delta Span - + Unit - + ml - + Unit Weight - + g - + Kg - + l - + in in - + out uit - + Moisture loss: %1% Organic loss: %2% - + Filter - + Emissivity - + ON AAN - + OFF UIT - + %1 to reach ET %2 - + %1 to reach BT %2 @@ -3618,17 +3618,17 @@ EIND - + XT Color - + XT - + current palette @@ -3674,52 +3674,52 @@ EIND Marker - + Circle Cirkel - + Square Vierkant - + Pentagon Vijfhoek - + Diamond Diamant - + Star Ster - + Hexagon 1 Zeshoek 1 - + Hexagon 2 Zeshoek 2 - + + - + x - + None Geen @@ -4331,7 +4331,7 @@ Profile missing [CHARGE] or [DROP] Nieuw profiel aangemaakt - + Open Wheel Graph @@ -4481,7 +4481,7 @@ Profile missing [CHARGE] or [DROP] Kies map - + No profile found Geen profiel gevonden @@ -4587,152 +4587,152 @@ Continue? Seconden - + Alarm Config - + Alarms are not available for device None - + Switch Language Taal wijzigen - + Language successfully changed. Restart the application. Taal wijziging geslaagd. Start toepassing opnieuw op. - + Import K202 CSV - + K202 file loaded successfully - + Import K204 CSV - + K204 file loaded successfully - + Import HH506RA CSV - + HH506RA file loaded successfully - + Save Graph as PNG Bewaar grafiek als PNG - + %1 size(%2,%3) saved - + Save Graph as SVG Bewaar grafiek als SVG - + %1 saved - + Invalid Wheel graph format - + Wheel Graph succesfully open - + Return the absolute value of x. - + Return the arc cosine (measured in radians) of x. - + Return the arc sine (measured in radians) of x. - + Return the arc tangent (measured in radians) of x. - + Return the cosine of x (measured in radians). - + Convert angle x from radians to degrees. - + Return e raised to the power of x. - + Return the logarithm of x to the given base. - + Return the base 10 logarithm of x. - + Return x**y (x to the power of y). - + Convert angle x from degrees to radians. - + Return the sine of x (measured in radians). - + Return the square root of x. - + Return the tangent of x (measured in radians). @@ -4798,625 +4798,625 @@ Continue? - + Save Graph as PDF - + current background ET - + current background BT - + MATHEMATICAL FUNCTIONS - + SYMBOLIC VARIABLES - + Symbolic Functions - + Save Palettes - + Palettes saved - + Invalid palettes file format - + Palettes loaded - + Load Palettes - + Alarms loaded - + Interpolation failed: no profile available - + Sound turned ON - + Sound turned OFF - + [ET target 1 = %1] [BT target 1 = %2] [ET target 2 = %3] [BT target 2 = %4] - + Event #%1 added - + Event #%1 deleted - + No events found - + Roast properties updated but profile not saved to disk - + Autosave ON. Prefix: %1 - + Autosave OFF - + xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) - + <b>Event</b> hide or show the corresponding slider - + <b>Action</b> Perform an action on slider release - + <b>Command</b> depends on the action type ('{}' is replaced by <i>value</i>*<i>factor</i> + <i>offset</i>) - + Serial Command: ASCII serial command or binary a2b_uu(serial command) - + DTA Command: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating - + <b>Offset</b> added as offset to the slider value - + <b>Factor</b> multiplicator of the slider value - + Event custom buttons - + Event configuration saved - + Found empty event type box - + <b>Button Label</b> Enter \n to create labels with multiple lines. - + <b>Event Description</b> Description of the Event to be recorded. - + <b>Event type</b> Type of event to be recorded. - + <b>Action</b> Perform an action at the time of the event - + <b>Documentation</b> depends on the action type ('{}' is replaced by the event value): - + Call Program: A program/script path (absolute or relative) - + Multiple Event: Adds events of other button numbers separated by a comma: 1,2,3, etc. - + <b>Button Visibility</b> Hides/shows individual button - + <b>Keyboard Shorcut: </b> [b] Hides/shows Extra Button Rows - + Phases changed to %1 default: %2 - + Background profile not found - + Background does not match number of labels - + Playback Aid set ON at %1 secs - + No profile background found - + Reading background profile... - + Phidget Temperature Sensor 4-input attached - + Phidget Bridge 4-input attached - + Phidget 1018 IO attached - + Not enough time points for an ET curviness of %1. Set curviness to %2 - + Designer Config - + Not enough time points for an BT curviness of %1. Set curviness to %2 - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + Incorrect time format. Please recheck %1 time - + Times need to be in ascending order. Please recheck %1 time - + Designer has been reset - + Tick the Float flag in this case. - + Serial Port Settings: %1, %2, %3, %4, %5, %6 - + External program - + Device not set - + PID to control ET set to %1 %2 ; PID to read BT set to %3 %4 - + Device set to %1. Now, check Serial Port settings - + Device set to %1. Now, chose serial port - + Device set to CENTER 305, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 309. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 303. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH506RA. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH806AU. Now, chose serial port - + Device set to %1 - + Device set to %1%2 - + Device set to %1. Now, chose Modbus serial port - + Device set to %1, which is equivalent to CENTER 302. Now, chose serial port - + Color of %1 set to %2 - + Save Wheel graph - + Wheel Graph saved - + Load Alarms - + Save Alarms - + <b>Status:</b> activate or deactive alarm - + <b>If Alarm:</b> alarm triggered only if the alarm with the given number was triggered before. Use 0 for no guard. - + <b>But Not:</b> alarm triggered only if the alarm with the given number was not triggered before. Use 0 for no guard. - + <b>From:</b> alarm only triggered after the given event - + <b>Time:</b> if not 00:00, alarm is triggered mm:ss after the event 'From' happend - + <b>Source:</b> the temperature source that is observed - + <b>Condition:</b> alarm is triggered if source rises above or below the specified temperature - + <b>Temp:</b> the speficied temperature limit - + <b>Action:</b> if all conditions are fulfilled the alarm triggeres the corresponding action - + <b>Description:</b> the text of the popup, the name of the program, the number of the event button or the new value of the slider - + <b>NOTE:</b> each alarm is only triggered once - + OFF UIT - + CONTINUOUS CONTROL - + ON AAN - + STANDBY MODE - + The rampsoak-mode tells how to start and end the ramp/soak - + Your rampsoak mode in this pid is: - + Mode = %1 - + Start to run from PV value: %1 - + End output status at the end of ramp/soak: %1 - + Output status while ramp/soak operation set to OFF: %1 - + Repeat Operation at the end: %1 - + Recomended Mode = 0 - + If you need to change it, change it now and come back later - + Use the Parameter Loader Software by Fuji if you need to - + Continue? - + Load PID Settings - + Save PID Settings - + Current sv = %1. Change now to sv = %2? - + Change svN - + Current pid = %1. Change now to pid =%2? - + Ramp Soak start-end mode - + Pattern changed to %1 - + Pattern did not changed - + Ramp/Soak was found ON! Turn it off before changing the pattern - + Ramp/Soak was found in Hold! Turn it off before changing the pattern - + Activate PID front buttons - + Remember SV memory has a finite life of ~10,000 writes. @@ -5424,142 +5424,142 @@ Proceed? - + RS ON - + RS OFF - + RS on HOLD - + PXG sv#%1 set to %2 - + PXR sv set to %1 - + SV%1 changed from %2 to %3) - + Unable to set sv%1 - + SV changed from %1 to %2 - + Unable to set sv - + Unable to set new sv - + Load Ramp/Soak Table - + Save Ramp/Soak Table - + PID turned on - + PID turned off - + Return the minimum of x and y. - + Return the maximum of x and y. - + The MODBUS device corresponds to input channels - + 1 and 2.. The MODBUS_34 extra device adds - + input channels 3 and 4. Inputs with slave - + id set to 0 are turned off. Modbus function 3 - + 'read holding register' is the standard. - + Modbus function 4 triggers the use of 'read - + 2 byte integer registers. A temperature of 145.2C - + is often sent as 1452. In that case you have to - + use the symbolic assignment 'x/10'. Few devices - + hold data as 4 byte floats in two registers. - + Yocto Thermocouple attached - + Yocto PT100 attached @@ -5569,92 +5569,92 @@ Proceed? - + Phidget Temperature Sensor IR attached - + input register'. Input registers (fct 4) usually - + are from 30000-39999. Most devices hold data in - + IO Command: set(n,0), set(n,1), toggle(n) to set Phidget IO digital output n - + ET value - + BT value - + Extra #1 T1 value - + Extra #1 T2 value - + Extra #2 T1 value - + Extra #2 T2 value - + Yn holds values sampled in the actual interval if refering to ET/BT or extra channels from devices listed before, otherwise Yn hold values sampled in the previous interval - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) writes values to the registers in slaves specified by the given ids - + <b>Event value</b> Value of event (1-100) to be recorded - + Phidget Temperature Sensor IR detached - + Phidget Temperature Sensor 4-input detached - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) or wcoils(slaveId,register,&lt;bool&gt;) writes values to the registers in slaves specified by the given ids - + Phidget Bridge 4-input detached - + Phidget 1018 IO detached @@ -5663,31 +5663,26 @@ Proceed? Hottop control turned off - - - Hottop control turned on - - Radio Button - + Meter - + PID - + TC4 - + Program @@ -5776,337 +5771,337 @@ Proceed? StatusBar - + Playback Aid set OFF - + Ready - + Decimal position successfully set to 1 - + Problem setting decimal position - + Problem setting thermocouple type - + setting autotune... - + Autotune successfully turned OFF - + Autotune successfully turned ON - + wait... - + PID OFF PID UIT - + PID ON PID AAN - + SV successfully set to %1 - + Empty SV box - + Unable to read SV - + Ramp/Soak operation cancelled - + No RX data - + RS ON - + Need to change pattern mode... - + Pattern has been changed. Wait 5 secs. - + Pattern could not be changed - + RampSoak could not be changed - + RS OFF - + RS successfully turned OFF - + setONOFFrampsoak(): Ramp Soak could not be set OFF - + getsegment(): problem reading ramp - + getsegment(): problem reading soak - + Finished reading Ramp/Soak val. - + Finished reading pid values - + %1 successfully sent to pid - + setpid(): There was a problem setting %1 - + Ramp/Soak successfully written - + Time Units successfully set to MM:SS - + Problem setting time units - + Thermocouple type successfully set - + SV%1 set to %2 - + Problem setting SV - + Cancelled svN change - + PID already using sv%1 - + setNsv(): bad response - + pid changed to %1 - + setNpid(): bad confirmation - + Cancelled pid change - + PID was already using pid %1 - + setNpid(): Unable to set pid %1 - + SV%1 successfully set to %2 - + setsv(): Unable to set SV - + pid #%1 successfully set to (%2,%3,%4) - + pid command failed. Bad data at pid%1 (8,8,8): (%2,%3,%4) - + sending commands for p%1 i%2 d%3 - + getallpid(): Unable to read pid values - + PID is using pid = %1 - + getallpid(): Unable to read current sv - + PID is using SV = %1 - + Ramp Soak could not be set OFF - + PID set to OFF - + PID set to ON - + Unable - + No data received - + Reading Ramp/Soak %1 ... - + problem reading Ramp/Soak - + Current pid = %1. Proceed with autotune command? - + Autotune cancelled - + UNABLE to set Autotune - + SV - + Ramp (MM:SS) - + Soak (MM:SS) - + Work in Progress @@ -6114,157 +6109,157 @@ Proceed? Tab - + Graph - + HUD - + Plotter - + Math - + UI - + General - + Notes - + Events - + Data - + Config - + Buttons - + Sliders - + Quantifiers - + Palettes - + Style Stijl - + ET/BT - + Extra - + Modbus - + Scale - + Color Kleur - + Extra Devices - + Symb ET/BT - + LCDs - + RS - + SV - + PID - + Set RS - + Ramp/Soak - + Phidgets - + Filter - + Espresso @@ -6272,335 +6267,340 @@ Proceed? Table - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL KOELEN - + Time Tijd - + ET - + BT - + DeltaET - + DeltaBT - + CHARGE - + EVENT #%2 %3%4 - + Description - + Type - + Value - + Label - + Action Actie - + Documentation Documentatie - + Visibility - + Color Kleur - + Text Color - + EVENT #%1 %2%3 - + Device - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Color 1 - + Color 2 - + Label 1 - + Label 2 - + y1(x) - + y2(x) - + LCD 1 - + LCD 2 - + Curve 1 - + Curve 2 - + Parent - + Width Breedte - + Opaqueness Dekking - + Delete Wheel - + Edit Labels - + Update Labels - + Properties - + Radius - + Starting angle - + Projection Projectie - + Text Size - + Color Pattern Kleurpatroon - + Status - + If Alarm - + But Not - + From - + Source - + Condition - + Temp - + Beep Signaal - + SV - + Ramp HH:MM - + Soak HH:MM - + Name - + Weight Gewicht + + + Nr + + Textbox @@ -6973,204 +6973,204 @@ Pungency - + <b>Label</b>= - + <b>Description </b>= - + <b>Type </b>= - + <b>Value </b>= - + <b>Documentation </b>= - + <b>Button# </b>= - + Save image using current graph size to a png format - + linear: linear interpolation cubic: 3rd order spline interpolation nearest: y value of the nearest point - + ON/OFF logs serial communication - + Automatic generated name = This text + date + time - + ON/OFF of automatic saving when pressing keyboard letter [a] - + Sets the directory to store batch profiles when using the letter [a] - + Allows to enter a description of the last event - + Add new extra Event button - + Delete the last extra Event button - + Show help - + Backup all palettes to a text file - + Restore all palettes from a text file - + Action Type - + Action String - + Aspect Ratio - + Example: 100 + 2*x - + Example: 100 + x - + Erases wheel parent hierarchy - + Sets graph hierarchy child->parent instead of parent->child - + Increase size of text in all the graph - + Decrease size of text in all the graph - + Decorative edge beween wheels - + Line thickness - + Line color - + Apply color pattern to whole graph - + Add new wheel - + Rotate graph 1 degree counter clockwise - + Rotate graph 1 degree clockwise - + Save graph to a text file.wg - + Sets Wheel graph to view mode - + open graph file.wg - + Close wheel graph editor - + Clear alarms table - + Interval diff --git a/translations/artisan_no.ts b/translations/artisan_no.ts index a8b828c02..43ef4e83f 100644 --- a/translations/artisan_no.ts +++ b/translations/artisan_no.ts @@ -172,7 +172,7 @@ END Kjøling SLUTT - + Update Oppdater @@ -182,92 +182,92 @@ END PID hjelp - + OK OK - + Cancel Avbryt - + Color Farge - + Plot Plott - + Background Bakgrunn - + Virtual Device Virtuelt utstyr - + Save Image Lagre Bilde - + Help Hjelp - + Info Info - + Set Sett - + Defaults Standard - + Order Rekkefølge - + Add Legg til - + Delete Slett - + in inn - + out ut - + Search Søk - + Path Sti @@ -282,57 +282,57 @@ END Gjenopprett Fra - + Save Lagre - + Load Last inn - + Del Slett - + Align Juster - + Up Opp - + Down Ned - + Left Venstre - + Right Høyre - + Reset Tilbakestill - + Close Lukk - + Create Lag @@ -342,352 +342,352 @@ END Søk etter porter - + Select Velg - + Grid Rutenett - + Title Tittel - + Y Label Y etikett - + X Label X etikett - + Drying Phase Tørke Fase - + Maillard Phase Maillard fase - + Development Phase Utviklings Fase - + Cooling Phase Kjøle Fase - + ET MT - + BT BT - + DeltaET DeltaMT - + DeltaBT DeltaBT - + Markers Markør - + Text Tekst - + Watermarks Vannmerke - + C Lines C linjer - + Grey Grå - + LED LED - + B/W S/V - + Reset Parents Nullstill over - + Reverse Hierarchy Reverser Hierarki - + + + - + - - + Line Color Linje Farge - + < < - + > > - + Save File Lagre Fil - + Save Img Lagre Img - + View Mode Se Modus - + Open Åpne - + Set Color Sett Farge - + All On Alt på - + All Off ALt av - + Read Ra/So values Les Ra/So verdier - + RampSoak ON RampSoak PÅ - + RampSoak OFF rampSoak AV - + PID OFF PID AV - + PID ON PID PÅ - + Write SV Skriv SV - + SV Buttons ON SV knapper PÅ - + SV Buttons OFF SV knapper AV - + Read SV Les SV - + Set p Sett p - + Set i Sett i - + Set d Sett d - + Autotune ON Autoinstilling PÅ - + Autotune OFF Autoinstilling AV - + Read PID Values Les PID Verdi - + Read Les - + Set ET PID to 1 decimal point Sett MT PID til 1 desimal - + Set BT PID to 1 decimal point Sett BT PID til 1 desimal - + Read RS values Les RS verdier - + Write SV1 Skriv SV1 - + Write SV2 Skriv SV2 - + Write SV3 Skriv SV3 - + Write SV4 Skriv SV4 - + Write SV5 Skriv SV5 - + Write SV6 Skriv SV6 - + Write SV7 Skriv SV7 - + ON SV buttons PÅ SV knapper - + OFF SV buttons AV SV knapper - + Read SV (7-0) Les SV (7-0) - + pid 1 pid 1 - + pid 2 pid 2 - + pid 3 pid 3 - + pid 4 pid 4 - + pid 5 pid 5 - + pid 6 pid 6 - + pid 7 pid 7 @@ -697,87 +697,87 @@ END Les alt - + Set ET PID to MM:SS time units Sett MT PID til MM:SS tids enhet - + Write Skriv - + Insert - + Clear - + scan - + Write All - + Write RS values - + Write SV (7-0) - + Read PIDs - + Write PIDs - + Apply - + On - + Off - + calc - + unit - + << - + >> @@ -785,122 +785,122 @@ END CheckBox - + Heavy FC Kraftig 1K - + Low FC Svak 1K - + Light Cut Lys Sprekke - + Dark Cut Mørk Sprekke - + Drops Dråper - + Oily Oljete - + Uneven Ujevn - + Tipping Svidde tupper - + Scorching Svidd - + Divots Krater - + DeltaET DeltaMT - + DeltaBT DeltaBT - + Smooth Spikes Jevne Pigger - + Drop Spikes Fjerne Pigger - + Limits Grenser - + Projection Projeksjon - + Show Vis - + Beep Beep - + Delete roast properties on RESET Slett brenningsegenskaper ved RESET - + Serial Log ON/OFF Seriell logg PÅ/AV - + Autosave [a] Autolagre [a] - + Lock Max Lås maks - + Button Knapp - + Mini Editor Mini Editor @@ -910,82 +910,82 @@ END Automatisk DROPP INN/DROPP UT - + CHARGE DROPP INN - + DRY END TØRKE SLUTT - + FC START 1K START - + FC END 1K SLUTT - + SC START 2K START - + SC END 2K SLUTT - + DROP DROPP UT - + COOL END KJØLE SLUTT - + Auto Adjusted Auto Justert - + Watermarks Vannmerke - + Background Bakgrunn - + Text Tekst - + Events Hendelse - + Playback Aid Avspillings Støtte - + Time Tid - + Bar Søyle @@ -995,27 +995,27 @@ END g/m - + ETBTa MTBTa - + Evaluation Evaluering - + Characteristics Karakteristikk - + ET MT - + BT BT @@ -1025,92 +1025,92 @@ END TC4_56 - + Load alarms from profile - + Auto CHARGE - + Auto DROP - + Mark TP - + Phases LCDs - + Auto DRY - + Auto FCs - + Decimal Places - + Modbus Port - + Smooth2 - + Start PID on CHARGE - + Load Ramp/Soak table from profile - + Control Button - + Ratiometric - + Align FCs - + /min - + Alarm Popups - + Lock @@ -1138,112 +1138,112 @@ END Vifte - + linear lineær - + newton newton - + metrics merisk - + thermal termisk - + cubic kubisk - + nearest nærmeste - + g g - + Kg Kg - + ml ml - + l l - + ET MT - + BT BT - + upper right øvre høyre - + upper left øvre venstre - + lower left nedre venstre - + lower right nedre høyre - + right høyre - + center left midt venstre - + center right midt høyre - + lower center nedre midt - + upper center øvre midt - + center midt @@ -1253,367 +1253,367 @@ END 30 sekunder - + 1 minute 1 minutt - + 2 minute 2 minutter - + 3 minute 3 minutter - + 4 minute 4 minutter - + 5 minute 5 minutter - + solid heltrukket - + dashed stiplet - + dashed-dot stiplet-prikk - + dotted prikket - + None Ingen - + Event #0 Hendelse #0 - + Event #%1 Hendelse #%1 - + lb lb - + liter liter - + gallon gallon - + quart quart - + pint pint - + cup cup - + cm^3 cm^3 - + Type Type - + Value Verdi - + Serial Command Seriell Kommando - + Modbus Command Modbus Kommando - + DTA Command DTA Kommando - + Call Program Kall Opp Program - + OFF AV - + ON - + Multiple Event Flere Hendelser - + DeltaBT Delta BT - + DeltaET DeltaMT - + SV Commands SV Kommando - + Ramp Commands Rampe Kommando - + little-endian liten endian - + grey grå - + Dark Grey Mørk Grå - + Slate Grey Skifer Grå - + Light Gray Lys Grå - + Black Svart - + White Hvit - + Transparent Transparent - + Flat Flat - + Perpendicular Loddrett - + Radial Radiell - + START START - + CHARGE DROPP INN - + TP SP - + DRY END TØRR SLUTT - + FC START 1K START - + FC END 1K SLUTT - + SC START 2K START - + SC END 2K SLUTT - + DROP DROPP UT - + COOL KJØLING - + below under - + above over - + Pop Up Pop Opp - + Event Button Hendelse Knapp - + Slider Glidebryter - + classic - + xkcd - + Default Standard - + Humor - + Comic - + DRY - + FCs - + FCe - + SCs - + SCe - + COOL END KJØLE SLUTT - + IO Command - + Hottop Heater - + Hottop Fan - + Hottop Command @@ -1684,12 +1684,12 @@ END rediger tekst - + profiles profiler - + other annet @@ -1697,17 +1697,17 @@ END Error Message - + Exception: Unntak: - + Value Error: Verdi Feil: - + IO Error: IO Feil: @@ -1717,42 +1717,42 @@ END Feil - + Unable to move CHARGE to a value that does not exist Ikke mulig å flytte Dropp INN til en verdi som ikke eksisterer - + Modbus Error: Modbus Feil: - + Serial Exception: Seriell Feil: - + F80h Error F80h Feil - + CRC16 data corruption ERROR. TX does not match RX. Check wiring CRC16 data korrupsjons FEIL. TX passer ikke RX. Sjekk kabling - + No RX data received Ingen RX data mottatt - + DTAcommand(): %1 bytes received but 15 needed DTAcommand():%1 bytes mottatt men 15 nødvendig - + Unable to open serial port Ikke mulig å åpne seriell port @@ -1762,62 +1762,62 @@ END HH806AUtemperature(): %1 bytes mottatt men 14 nødvendig - + HH806Wtemperature(): Unable to initiate device HH806Wtemperature(): Ikke mulig å initiere utstyr - + HH506RAGetID: %1 bytes received but 5 needed HH506RAGetID: %1byes mottatt men 5 nødvendig - + HH506RAtemperature(): Unable to get id from HH506RA device HH506RAtemperature(): Ikke mulig å motta id fra HH506RA instrument - + HH506RAtemperature(): %1 bytes received but 14 needed HH506RAtemperature(): %1 bytes mottatt men 14 nødvendig - + CENTER302temperature(): %1 bytes received but 7 needed CENTER302temperature(): %1 bytes mottatt men 7 nødvendig - + CENTER303temperature(): %1 bytes received but 8 needed CENTER303temperature(): %1 bytes mottatt men 8 nødvendig - + CENTER306temperature(): %1 bytes received but 10 needed CENTER306temperature(): %1 bytes mottatt men 10 nødvendig - + CENTER309temperature(): %1 bytes received but 45 needed CENTER309temperature(): %1 bytes mottatt men45 nødvendig - + Arduino could not set channels Arduino kunne ikke sette kanaler - + Arduino could not set temperature unit Arduino kunne ikke sette temperatur enhet - + Serial Exception: invalid comm port Seriell unntak: ugyldig comm port - + Serial Exception: timeout Seriell unntak: tidsavbrudd @@ -1827,37 +1827,37 @@ END Instrument feil - + Segment values could not be written into PID Segment verdi kunne ikke skrives til PID - + RampSoak could not be changed RampSoak kunne ikke endres - + pid.readoneword(): %1 RX bytes received (7 needed) for unit ID=%2 pid.readoneword(): %1 RX bytes mottatt (7 nødvendig) for enhet ID=%2 - + Univariate: no profile data available Univariate feilet: profil ikke tilgjengelig - + Polyfit: no profile data available Polyfit feilet: profil ikke tilgjengelig - + MS6514temperature(): %1 bytes received but 16 needed - + HH806AUtemperature(): %1 bytes received but 16 needed HH806AUtemperature(): %1 bytes mottatt men 14 nødvendig {806A?} {1 ?} {16 ?} @@ -1867,7 +1867,7 @@ END - + Arduino could not set filters @@ -1928,147 +1928,147 @@ END Form Caption - + Extras Ekstra - + Roast Properties Brennings egenskaper - + Artisan Platform Artisan Platform - + Settings Viewer Innstillingsviser - + Serial Log Seriell Logg - + Error Log Feil Logg - + Message History Meldings Historikk - + Keyboard Autosave [a] Tastatur Autolagring [a] - + AutoSave Path AutoLagre Sti - + Axes Akser - + Roast Calculator Brennings Kalkulator - + Events Hendelser - + Roast Phases Brennings Faser - + Cup Profile Smaksprofil - + Profile Background Profil Bakgrunn - + Statistics Statistikk - + Designer Config Designer Konfig - + Manual Temperature Logger Manuell Temperatur logger - + Serial Ports Configuration Serie Port Konfigurasjon - + Device Assignment Utstyr Tildeling - + Colors Farger - + Wheel Graph Editor Hjul Graf Redigering - + Alarms Alarmer - + Fuji PXR PID Control Fuji PXR PID Kontroll - + Fuji PXG PID Control Fuji PXG PID Kontroll - + Delta DTA PID Control Delta DTA PID Kontroll - + Arduino Control - + Volume Calculator - + Tare Setup @@ -2076,247 +2076,247 @@ END GroupBox - + Curves Kurver - + LCDs LCDs - + HUD HUD - + Input Filters Innput Filter - + Interpolate Interpoler - + Univariate Univariat - + Appearance Utseende - + Resolution Oppløsning - + Sound Lyd - + Times Tider - + Time Axis Tidsakse - + Temperature Axis Temperaturakse - + DeltaBT/DeltaET Axis DeltaBT/DeltaMT Akse - + Legend Location Forklaring Plassering - + Grid Rutenett - + Rate of Change Endringsrate - + Temperature Conversion Temperatur Konvertering - + Weight Conversion Vekt Konvertering - + Volume Conversion Volum Konvertering - + Event Types Hendelse Typer - + Default Buttons Standard Knapper - + Management Ledelse - + Evaluation Evaluering - + Display Display - + Initial Settings Førstegangs Instillinger - + Input 1 Input 1 - + Input 2 Input 2 - + Input 3 Input 3 - + Input 4 Input 4 - + PID PID - + Arduino TC4 Arduino TC4 - + External Program Eksternt Program - + Symbolic Assignments Symbol Tildeling - + Timer LCD Timer LCD - + ET LCD MT LCD - + BT LCD BT LCD - + DeltaET LCD DeltaMT LCD - + DeltaBT LCD DeltaBT LCD - + Extra Devices / PID SV LCD Ekstra Utstyr /PID SV LCD - + Label Properties Egenskap Betegnelser - + Polyfit - + Look - + Network - + p-i-d - + Set Value - + Phidget IO - + Phidgets 1045 - + Phidgets 1046 RTD - + WebLCDs @@ -2326,12 +2326,12 @@ END Sampling Intervall - + Phidgets 1048/1051 - + Sampling @@ -2527,12 +2527,12 @@ END grad/min - + ET MT - + BT BT @@ -2547,42 +2547,42 @@ END DeltaBT - + at at - + CHARGE DROPP INN - + DRY END TØRKE SLUTT - + FC START 1K START - + FC END 1K SLUTT - + SC START 2K START - + SC END 2K SLUTT - + DROP DROPP UT @@ -2622,7 +2622,7 @@ END BT=%1-%2 (%3) MT=%4-%5 (%6)...T=%7...SR=%8g/m MTBTa=%9 [%11-%12] - + Time Tid @@ -2657,32 +2657,32 @@ END Hendelse #<b>%1 </b> - + City City - + City+ City+ - + Full City Full City - + Full City+ Full City+ - + Light French Lys Fransk - + French Fransk @@ -2692,7 +2692,7 @@ END %1 for å nå MT mål %2 - + at %1 ved %1 @@ -2702,192 +2702,192 @@ END %1 for å nå BT mål %2 - + %1 after FCs %1 etter 1Ks - + %1 after FCe %1 etter 1Ke - + ET - BT = %1 MT - BT = %1 - + ET - BT = %1%2 MT - BT.=.%1%2 - + ET Target 1 MT Mål 1 - + BT Target 1 BT Mål 1 - + ET Target 2 MT Mål 2 - + BT Target 2 BT Mål 2 - + Mode Modus - + ET p-i-d 1 MT p-i-d 1 - + Smooth Deltas Jevne Deltas - + Smooth Curves Jevne Kurver - + min min - + max maks - + Y(x) Y(x) - + COOL KJØLE - + Title Tittel - + Date Dato - + Beans Bønner - + Weight Vekt - + in inn - + out ut - + % % - + Volume Volum - + Density Tetthet - + per per - + Bean Size Bønne størrelse - + mm mm - + Whole Color Farge Hel - + Ground Color Farge Kvernet - + Moisture Greens Lagringsforhold - + % % - + Ambient Conditions Forhold omgivelse - + Roaster Brenner - + Operator Operatør - + Roasting Notes Brennings Notater - + Cupping Notes Cupping Notater - + Ambient Source Omgivelse Kilde @@ -2897,92 +2897,92 @@ END Tetthet inn: %1 g/l => Tetthet ut: %2 g/l - + (%1 g/l) (%1 g/l) - + Number of errors found %1 Antall feil funnet %1 - + Max Maks - + Min Min - + Rotation Rotasjon - + Initial Max Initiell Maks - + Step Steg - + Style Stil - + Width Vidde - + Opaqueness Dekningsgrad - + Enter two times along profile Sett inn to ganger langs profilen - + Start (00:00) Start (00:00) - + End (00:00) Slutt 00:00) - + Fahrenheit Farenheit - + Celsius Celsius - + Time syntax error. Time not valid Tids syntax feil. Tid ikke gyldig - + Error: End time smaller than Start time Feil: Slutt tid mindre enn Start tid - + Best approximation was made from %1 to %2 Beste tilnærming ble gjort fra %1 til %2 @@ -2992,392 +2992,392 @@ END grad/sek = %1 grad/min = <b>%2<> - + No profile found Ingen profil funnet - + Bars Søyler - + Color Farge - + Marker Markør - + Thickness Tykkelse - + Opacity Opasitet - + Size Størrelse - + Max buttons per row Maks knapper per rad - + Color Pattern Farge mønster - + palette # palett # - + Event Hendelse - + Action Handling - + Command Kommando - + Offset Forskyvning - + Factor Faktor - + Drying Tørking - + Maillard Maillard - + Development Utvikling - + Default Standard - + Aspect Ratio Forhold høyde/bredde - + ET Color MT Farge - + BT Color BT Farge - + DeltaET Color DeltaMT Farge - + DeltaBT Color DeltaBT Farge - + Text Warning Tekst varsel - + sec sek - + Cooling Kjøling - + Curviness Krummethet - + Events Playback Avspill Hendelser - + Comm Port Comm Port - + Baud Rate Baud Rate - + Byte Size Byte størrelse - + Parity Paritet - + Stopbits Stoppbits - + Timeout Tidsavbrudd - + Settings for non-Modbus devices Innstilling for non-Modbus utstyr - + Slave Slave - + Register Register - + Float Flyt - + Function Funksjon - + Device Utstyr - + Control ET Kontroll MT - + Read BT Les BT - + Type Type - + RS485 Unit ID RS485 Enhet ID - + ET Channel MT Kanal - + BT Channel BT Kanal - + AT Channel AT Kanal - + ET Y(x) MT Y(x) - + BT Y(x) BT Y(x) - + Ratio Forhold - + Text Tekst - + Edge Kant - + Line Linje - + Color pattern Farge mønster - + dg dg - + Enter description Legg inn beskrivelse - + Ramp Soak HH:MM<br>(1-4) Ramp Soak HH:MM<br>(1-4) - + Ramp Soak HH:MM<br>(5-8) Ramp Soak HH:MM<br>(5-8) - + Ramp/Soak Pattern Ramp/Soak Mønster - + WARNING ADVARSEL - + Writing eeprom memory Skriver eeprom minne - + <u>Max life</u> 10,000 writes <u>Maks liv</u> 10,000 skrivinger - + Infinite read life. Uendelig lese liv. - + After <u>writing</u> an adjustment,<br>never power down the pid<br>for the next 5 seconds <br>or the pid may never recover. Etter <u>skriver</u> en endring,<br>må man aldri slå av pid<br>de neste 5 sek<br>ellers vil pid ikke kunne gjenopprettes. - + Read operations manual Les brukermanualen - + ET Thermocouple type MT Termoelement type - + BT Thermocouple type BT Termoelement Type - + NOTE: BT Thermocouple type is not stored in the Artisan settings MERKNAD: BT Termoelement type er ikke lagret i Artisan innstillingene - + Artisan uses 1 decimal point Artisan bruker 1 desimal - + Ramp Soak (MM:SS)<br>(1-7) Ramp Soak (MM:SS)<br>(1-7) - + Ramp Soak (MM:SS)<br>(8-16) Ramp Soak (MM:SS)<br>(8-16) - + Pattern Mønster - + SV (7-0) SV (7-0) - + Write Skriv - + P P - + I I - + D D @@ -3387,12 +3387,12 @@ END MERKNAD: BT Termoelement type er ikke lagert i Artisan instillingene - + Artisan Fuji PXG uses MINUTES:SECONDS units in Ramp/Soaks Artisan Fuji PXG bruker MINUTTER:SEKUNDER som enhet i Ramp/Soaks - + SV SV @@ -3417,12 +3417,12 @@ END Delta Kurver - + Start - + End @@ -3432,12 +3432,12 @@ END <b>%1</b> grad/sek, <b>%2</b> grad/min - + Path Effects - + Font @@ -3467,12 +3467,12 @@ END Start opptak - + Prefix - + Source Kilde @@ -3482,77 +3482,77 @@ END - + Window - + Cycle - + Lookahead - + Manual - + Ramp/Soak - + Background Bakgrunn - + SV Buttons - + SV Slider - + Coarse - + Host - + Port - + HUD Button - + Raw - + ServerId: - + Password: @@ -3587,12 +3587,12 @@ END - + Moisture Roasted - + Density in: %1 g/l => Density out: %2 g/l @@ -3617,112 +3617,112 @@ END - + <b>%1</b> %2/sec, <b>%3</b> %4/min - + Async - + Change - + Gain - + Rate - + Wiring - + Delta Span - + Unit - + ml ml - + Unit Weight - + g g - + Kg Kg - + l l - + in inn - + out ut - + Moisture loss: %1% Organic loss: %2% - + Filter - + Emissivity - + ON - + OFF AV - + %1 to reach ET %2 - + %1 to reach BT %2 @@ -3732,17 +3732,17 @@ END - + XT Color - + XT - + current palette @@ -3788,52 +3788,52 @@ END Marker - + Circle Sirkel - + Square Firkant - + Pentagon Femkant - + Diamond Diamant - + Star Stjerne - + Hexagon 1 Sekskant 1 - + Hexagon 2 Sekskant 2 - + + + - + x x - + None Ingen @@ -4465,7 +4465,7 @@ Profil savnet [DROPP INN] eller[DROPP UT] Ny profil laget - + Open Wheel Graph Åpne hjul graf @@ -4625,7 +4625,7 @@ Profil savnet [DROPP INN] eller[DROPP UT] Velg Katalog - + No profile found Ingen profil funnet @@ -4731,152 +4731,152 @@ Continue? Sekunder - + Alarm Config Alarm Konfig - + Alarms are not available for device None Alarmer er ikke tilgjengelig for dette utstyret - + Switch Language Endre Språk - + Language successfully changed. Restart the application. Språk endret. Start program på nytt. - + Import K202 CSV Importer K202 CSV - + K202 file loaded successfully K202 fil er lastet inn uten feil - + Import K204 CSV Importer K204 CSV - + K204 file loaded successfully K204 fil lagret uten feil - + Import HH506RA CSV Importer HH506RA CSV - + HH506RA file loaded successfully HH506RA fil lastet inn uten feil - + Save Graph as PNG Lagre graf som PNG - + %1 size(%2,%3) saved %1 størrelse(%2,%3) lagret - + Save Graph as SVG Lagre graf som SVG - + %1 saved %1 lagret - + Invalid Wheel graph format Ugyldig Hjul graf format - + Wheel Graph succesfully open Hjul Graf åpnet uten feil - + Return the absolute value of x. Returnerer absolutt verdi av x. - + Return the arc cosine (measured in radians) of x. Returnerer arkus cosinus (målt i radianer) av x. - + Return the arc sine (measured in radians) of x. Returnerer arkus sinus (målt i radianer) av x. - + Return the arc tangent (measured in radians) of x. Returnerer arkus tangens (målt i radianer) av x. - + Return the cosine of x (measured in radians). Returnerer cosinus av x (målt i radianer). - + Convert angle x from radians to degrees. Konverterer vinkel fra radianer til grader. - + Return e raised to the power of x. Returnerer e opphøyd i potens x. - + Return the logarithm of x to the given base. Returnerer logaritmen av x for gitt base. - + Return the base 10 logarithm of x. Returnerer bese 10 logaritmen av x. - + Return x**y (x to the power of y). Returnerer x**y (x opphøyd i potens y). - + Convert angle x from degrees to radians. Konverterer vinkel x fra grader til radianer. - + Return the sine of x (measured in radians). Returnerer sinus av x (målt i radianer). - + Return the square root of x. Returnerer kvadratroten av x. - + Return the tangent of x (measured in radians). Returnerer tangens av x (målt i radianer). @@ -4911,122 +4911,122 @@ Continue? tidligere Ekstra #2 T2 verdi - + MATHEMATICAL FUNCTIONS MATEMATISKE FUNKSJONER - + SYMBOLIC VARIABLES SYMBOLSKE VARIABLER - + Symbolic Functions Symbolske funksjoner - + Save Palettes Lagre Palett - + Palettes saved Palett lagret - + Invalid palettes file format Ugyldig palett fil format - + Palettes loaded Palett lastet inn - + Load Palettes Last inn Palett - + Alarms loaded Alarmer lastet inn - + Interpolation failed: no profile available Interpolasjon feilet: profil ikke tilgjengelig - + Sound turned ON Lyd slått PÅ - + Sound turned OFF Lyd slått AV - + [ET target 1 = %1] [BT target 1 = %2] [ET target 2 = %3] [BT target 2 = %4] [MT mål 1 = %1] [BT mål 1 = %2] [MT mål 2 = %3] [BT mål 2 = %4] - + Event #%1 added Hendelse #%1 lagt til - + Event #%1 deleted Hendelse #%1 slettet - + No events found Ingen hendelse funnet - + Roast properties updated but profile not saved to disk Brennings egenskaper oppdatert men profil er ikke lagret til disk - + Autosave ON. Prefix: %1 Autosave PÅ. Prefix: %1 - + Autosave OFF Autosave AV - + xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) xgrense = (%3,%4) ygrense = (%1,%2) zgrense = (%5,%6) - + <b>Event</b> hide or show the corresponding slider <b>Hendelse</b>skjul eller vis tilhørende slider - + <b>Action</b> Perform an action on slider release <b>Handling</b> Utfør handling når slider slippes - + <b>Command</b> depends on the action type ('{}' is replaced by <i>value</i>*<i>factor</i> + <i>offset</i>) <b>Kommando</b> avhengig av handlings type ('{}'er erstattet av <i>verdi</i>*<i>faktor</i> + <i>offsett</i>) - + Serial Command: ASCII serial command or binary a2b_uu(serial command) Seriell kommando: ASCII seriell kommando eller binær a2b_uu(seriell kommando) @@ -5036,47 +5036,47 @@ Continue? Modbus Kommando: skriv([slaveId,register,value],..,[slaveId,register,value]) skriver verdier til registerene i slave spesifisert av gitte id - + DTA Command: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating DTA Kommando: Sett inn dataadresse : verdi, ex. 4701:1000 og sv er 100. alltid multipliser med 10 his verdi enhet: 0.1 / ex. 4719:0 slutter å varme - + <b>Offset</b> added as offset to the slider value <b>Offsett</b> lagt til som offsett til slider verdi - + <b>Factor</b> multiplicator of the slider value <b>Faktor</b> multiplikator av slider verdi - + Event custom buttons Bruker genererte hendelses knapper - + Event configuration saved Hendelse konfigurasjon lagret - + Found empty event type box Tom hendelse type boks funnet - + <b>Button Label</b> Enter \n to create labels with multiple lines. <b>Knapp merket </b> Enter \n for å lage knapp med flere linjers tekst. - + <b>Event Description</b> Description of the Event to be recorded. <b>Hendelse beskrivelse</b>Beskrivelse av Hendelse som skal lagres. - + <b>Event type</b> Type of event to be recorded. <b>Hendelse type</b> Type hendelse som skal lagres. @@ -5086,127 +5086,127 @@ Continue? <b>Hendelse verdi</b> Verdi av hendelse (1-10) som skal lagres - + <b>Action</b> Perform an action at the time of the event <b>Handling</b>Utfør handling når hendelse inntreffer - + <b>Documentation</b> depends on the action type ('{}' is replaced by the event value): <b>Documentasjon</b> avhenger av hendelse type ('{}'blir erstattet av hendelses verdi): - + Call Program: A program/script path (absolute or relative) Kall opp program: En program/skript sti (absolutt eller relativ) - + Multiple Event: Adds events of other button numbers separated by a comma: 1,2,3, etc. Flere Hendelser: Legger til hendelser fra andre knapper separert med komma: 1,2,3, etc. - + <b>Button Visibility</b> Hides/shows individual button <b>Synlighet knapp</b> Skjuler/Viser individuell knapp - + <b>Keyboard Shorcut: </b> [b] Hides/shows Extra Button Rows <b>Tastatur snarveg: </b> [b] Skjuler/viser Ekstra knapperader - + Phases changed to %1 default: %2 Faser endret til %1 standard: %2 - + Background profile not found Bakgrunnsprofil ikke funnet - + Background does not match number of labels Bakgrunn passer ikke med antall merker - + Playback Aid set ON at %1 secs Avspillings hjelp settes på etter%1 sek - + No profile background found Ingen profil bakgrunn funnet - + Reading background profile... Leser bakgrunnsprofil... - + Not enough time points for an ET curviness of %1. Set curviness to %2 Ikke nok tids registreringer for en MT kurvethet av %1. Sett kurvethet til %2 - + Designer Config Designer Konfig - + Not enough time points for an BT curviness of %1. Set curviness to %2 Ikke nok tids registreringer for en BT kurvethet av %1. Sett kurvethet til %2 - + CHARGE Dropp Inn - + DRY END Tørking Slutt - + FC START 1K Start - + FC END 1K Slutt - + SC START 2K Start - + SC END 2K Slutt - + DROP Dropp Ut - + Incorrect time format. Please recheck %1 time Ikke korrekt tidsformat. Sjekk %1 tid igjen - + Times need to be in ascending order. Please recheck %1 time Tider må være i stigende rekkefølge. Sjekk %1 tid igjen - + Designer has been reset Designer er tilbakestilt @@ -5266,12 +5266,12 @@ Continue? Noe utstyr holder data i 4 byte flyt i to register. - + Tick the Float flag in this case. Merk Flyt flagg i dette tilfellet. - + Serial Port Settings: %1, %2, %3, %4, %5, %6 Seriell Port Innstillinger: %1, %2, %3, %4, %5, %6 @@ -5281,137 +5281,137 @@ Continue? Port skanning er ikke støttet på denne plattformen - + External program Eksternt program - + Device not set Utstyr ikke innstilt - + PID to control ET set to %1 %2 ; PID to read BT set to %3 %4 PID som kontrollerer MT satt til %1 %2 ; PID som leser BT er satt til %3 %4 - + Device set to %1. Now, check Serial Port settings Utstyr satt til %1. Sjekk Seriell Port Innstillinger - + Device set to %1. Now, chose serial port Utstyr satt til %1. Velg seriell port - + Device set to CENTER 305, which is equivalent to CENTER 306. Now, chose serial port Utstyr satt til CENTER 305, som er tilsvarende CENTER 306. Velg seriell port - + Device set to %1, which is equivalent to CENTER 309. Now, chose serial port Utstyr satt til %1, som er tilsvarende CENTER 309. Velg Seriell port - + Device set to %1, which is equivalent to CENTER 303. Now, chose serial port Utstyr satt til %1, som er tilsvarende CENTER 303. Velg Seriell port - + Device set to %1, which is equivalent to CENTER 306. Now, chose serial port Utstyr satt til %1, som er tilsvarende CENTER 306. Velg Seriell port - + Device set to %1, which is equivalent to Omega HH506RA. Now, chose serial port Utstyr satt til %1, som er tilsvarende Omega HH506RA. Velg Seriell port - + Device set to %1, which is equivalent to Omega HH806AU. Now, chose serial port Utstyr satt til %1, som er tilsvarende Omega HH806AU. Velg Seriell port - + Device set to %1 Utstyr satt til %1 - + Device set to %1%2 Utstyr satt til %1%2 - + Device set to %1, which is equivalent to CENTER 302. Now, chose serial port Utstyr satt til %1, som er tilsvarende CENTER 302. Velg Seriell port - + Color of %1 set to %2 Farge på %1 satt til %2 - + Save Wheel graph Lagre Hjulgraf - + Wheel Graph saved Hjulgraf lagret - + Load Alarms Last Alarmer - + Save Alarms Lagre Alarmer - + <b>Status:</b> activate or deactive alarm <b>Status:</b> aktiver eller deaktiver alarm - + <b>If Alarm:</b> alarm triggered only if the alarm with the given number was triggered before. Use 0 for no guard. <b>Om Alarm:</b> alarm utløses kun om alarmen med gitt nummer ble utløst tidligere. Bruk 0 for 'no guard'. - + <b>From:</b> alarm only triggered after the given event <b>Fra:</b> alarm blir kun utløst etter gitt hendelse - + <b>Time:</b> if not 00:00, alarm is triggered mm:ss after the event 'From' happend <b>Tid:</b>om ikke 00:00,blir alarm utløst mm:ss etter hendelsen 'Fra' forekom - + <b>Source:</b> the temperature source that is observed <b>Kilde:</b> observert temperaturkilde - + <b>Condition:</b> alarm is triggered if source rises above or below the specified temperature <b>Betingelse:</b> alarm utløses om kilden stiger over eller under spesifisert temperatur - + <b>Temp:</b> the speficied temperature limit <b>Temp:</b> tspesifisert temperatur grense - + <b>Action:</b> if all conditions are fulfilled the alarm triggeres the corresponding action <b>Handling:</b> om alle betingelser er oppfylt vil alarmen utløse samsvarende handling @@ -5421,85 +5421,85 @@ Continue? <b>Beskrivelse:</b> 'popup' teksten, programmets navn, antall hendelses knapper {om 0 vil KJØLE hendelsen utløses} eller den nye verdien på glidebryteren - + <b>NOTE:</b> each alarm is only triggered once <b>HUSK:</b> hver alarm blir bare utløst en gang - + OFF AV - + CONTINUOUS CONTROL KONTINUERLIG KONTROLL - + ON - + STANDBY MODE STANDBY MODUS - + The rampsoak-mode tells how to start and end the ramp/soak Rampsoak-modus beskriver hvordan man starter og avslutter denne modus - + Your rampsoak mode in this pid is: Din rampsoak modus i denne pid er: - + Mode = %1 Modus = %1 - + Start to run from PV value: %1 Start fra PV verdi %1 - + End output status at the end of ramp/soak: %1 Avslutt ut status når ramp/soak er ferdig: %1 - + Output status while ramp/soak operation set to OFF: %1 Ut status når ramp/soak operasjon er satt til AV: %1 - + Repeat Operation at the end: %1 Gjenta Operasjon ved slutt:%1 - + Recomended Mode = 0 Anbefalt Modus = 0 - + If you need to change it, change it now and come back later Om den må endres, gjør det nå og kom tilbake senere - + Use the Parameter Loader Software by Fuji if you need to Bruk 'Parameter Loader Software' av Fuji om nødvendig - + Continue? Fortsett? @@ -5509,52 +5509,52 @@ Repeat Operation at the end: %1 RampSoak Modus - + Current sv = %1. Change now to sv = %2? Nåværende sv = %1. Endre til sv = %2 nå? - + Change svN Endre svN - + Current pid = %1. Change now to pid =%2? Nåværende pid = %1. Endre til pid = %2 nå? - + Ramp Soak start-end mode Ramp Soak start-slutt modus - + Pattern changed to %1 Mønster endret til %1 - + Pattern did not changed Mønster ikke endret - + Ramp/Soak was found ON! Turn it off before changing the pattern Ramp/Soak er PÅ! Slå av før mønster endres - + Ramp/Soak was found in Hold! Turn it off before changing the pattern Ramp/Soak er på VENT! Slå av før mønster endres - + Activate PID front buttons Aktiver PID front knapper - + Remember SV memory has a finite life of ~10,000 writes. @@ -5564,52 +5564,52 @@ på 10,000 skrivinger Fortsett? - + RS ON RS PÅ - + RS OFF RS AV - + RS on HOLD RS på VENT - + PXG sv#%1 set to %2 PXG sv#%1 satt til %2 - + PXR sv set to %1 PXR sv satt til %1 - + SV%1 changed from %2 to %3) SV%1 endret fra %2 til %3) - + Unable to set sv%1 Ikke mulig å setter sv%1 - + SV changed from %1 to %2 SV endret fra %1 til %2 - + Unable to set sv Ikke mulig å sette sv - + Unable to set new sv Ikke mulig å sette ny sv @@ -5624,7 +5624,7 @@ Fortsett? - + Save Graph as PDF Lagre graf som PDF @@ -5634,22 +5634,22 @@ Fortsett? En temperatur på 145.2C blir ofte sendt som 1452. - + Phidget Temperature Sensor 4-input attached - + Phidget Bridge 4-input attached - + Device set to %1. Now, chose Modbus serial port - + <b>But Not:</b> alarm triggered only if the alarm with the given number was not triggered before. Use 0 for no guard. @@ -5665,17 +5665,17 @@ Continue? - + <b>Description:</b> the text of the popup, the name of the program, the number of the event button or the new value of the slider - + Load PID Settings - + Save PID Settings @@ -5695,12 +5695,12 @@ Continue? - + current background ET - + current background BT @@ -5710,27 +5710,27 @@ Continue? - + Phidget 1018 IO attached - + Load Ramp/Soak Table - + Save Ramp/Soak Table - + PID turned on - + PID turned off @@ -5740,72 +5740,72 @@ Continue? - + Return the minimum of x and y. - + Return the maximum of x and y. - + The MODBUS device corresponds to input channels - + 1 and 2.. The MODBUS_34 extra device adds - + input channels 3 and 4. Inputs with slave - + id set to 0 are turned off. Modbus function 3 - + 'read holding register' is the standard. - + Modbus function 4 triggers the use of 'read - + 2 byte integer registers. A temperature of 145.2C - + is often sent as 1452. In that case you have to - + use the symbolic assignment 'x/10'. Few devices - + hold data as 4 byte floats in two registers. - + Yocto Thermocouple attached - + Yocto PT100 attached @@ -5815,92 +5815,92 @@ Continue? - + Phidget Temperature Sensor IR attached - + input register'. Input registers (fct 4) usually - + are from 30000-39999. Most devices hold data in - + IO Command: set(n,0), set(n,1), toggle(n) to set Phidget IO digital output n - + ET value - + BT value - + Extra #1 T1 value - + Extra #1 T2 value - + Extra #2 T1 value - + Extra #2 T2 value - + Yn holds values sampled in the actual interval if refering to ET/BT or extra channels from devices listed before, otherwise Yn hold values sampled in the previous interval - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) writes values to the registers in slaves specified by the given ids - + <b>Event value</b> Value of event (1-100) to be recorded - + Phidget Temperature Sensor IR detached - + Phidget Temperature Sensor 4-input detached - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) or wcoils(slaveId,register,&lt;bool&gt;) writes values to the registers in slaves specified by the given ids - + Phidget Bridge 4-input detached - + Phidget 1018 IO detached @@ -5909,21 +5909,16 @@ Continue? Hottop control turned off - - - Hottop control turned on - - Radio Button - + Meter Måler - + PID PID @@ -5933,12 +5928,12 @@ Continue? Arduino TC4 - + Program Program - + TC4 @@ -6037,132 +6032,132 @@ Continue? StatusBar - + Playback Aid set OFF Avspillings hjelp satt AV - + Ready Klar - + Decimal position successfully set to 1 Desimal posisjon satt til 1 - + Problem setting decimal position Problem med å sette desimal posisjon - + Problem setting thermocouple type Problem med å sette termoelement type - + setting autotune... setter autotune... - + Autotune successfully turned OFF Autotune satt til AV uten feil - + Autotune successfully turned ON Autotune slått PÅ uten feil - + wait... vent... - + PID OFF PID AV - + PID ON PID PÅ - + SV successfully set to %1 SV satt til %1 uten feil - + Empty SV box Tom SV boks - + Unable to read SV Ikke mulig å lese SV - + Ramp/Soak operation cancelled Ramp/Soak operasjon kansellert - + No RX data Ingen RX data - + RS ON RS PÅ - + Need to change pattern mode... Må endre mønster modus... - + Pattern has been changed. Wait 5 secs. Mønster er endret. Vent 5 sek. - + Pattern could not be changed Mønsterkunne ikke endres - + RampSoak could not be changed RampSoak kunne ikke endres - + RS OFF RS OFF - + RS successfully turned OFF RS slått AV uten feil - + setONOFFrampsoak(): Ramp Soak could not be set OFF setONOFFrampsoak(): Ramp Soak kunne ikke slås AV - + getsegment(): problem reading ramp getsegment(): problem med å lese ramp - + getsegment(): problem reading soak setsegment(): problem med å lese soak @@ -6172,12 +6167,12 @@ Continue? getallsegments(): problem med å lese R/S - + Finished reading Ramp/Soak val. Ferdig å lese Ramp/Soak verdi. - + Finished reading pid values Ferdig å lese pid verdier @@ -6187,52 +6182,52 @@ Continue? %1 sendt til pid uten feil - + setpid(): There was a problem setting %1 setpid(): Et problem oppstod ved å sette %1 - + Ramp/Soak successfully written Ramp/Soak skrevet uten feil - + Time Units successfully set to MM:SS Tids enhet satt til MM:SS uten feil - + Problem setting time units Problem med å sette tids enhet - + Thermocouple type successfully set Type Termoelement satt uten feil - + SV%1 set to %2 SV%1 satt til %2 - + Problem setting SV Problem med å sette SV - + Cancelled svN change Kansellert svN endring - + PID already using sv%1 PID bruker allerede sv%1 - + setNsv(): bad response setNsv(): ugyldig respons @@ -6242,147 +6237,147 @@ Continue? pid%1 endret til %2 - + setNpid(): bad confirmation setNpid(): ugyldig bekreftelse - + Cancelled pid change Kansellert pid endring - + PID was already using pid %1 PID brukte allerede pid %1 - + setNpid(): Unable to set pid %1 setNpid(): Ikke mulig å sette pid %1 - + SV%1 successfully set to %2 SV%1 satt til %2 uten feil - + setsv(): Unable to set SV setsv(): Ikke mulig å sette SV - + pid #%1 successfully set to (%2,%3,%4) pid #%1 satt til (%2,%3,%4) - + pid command failed. Bad data at pid%1 (8,8,8): (%2,%3,%4) Feil på pid kommando. Ugyldig data på pid%1 (8,8,8): (%2,%3,%4) - + getallpid(): Unable to read pid values getallpid(): Ikke mulig å lese pid verdier - + PID is using pid = %1 PID brukerpid =%1 - + getallpid(): Unable to read current sv getallpid(): Ikke mulig å lese gjeldende sv - + PID is using SV = %1 PID bruker SV = %1 - + Ramp Soak could not be set OFF Ramp Soak kunne ikke settes til AV - + PID set to OFF PID satt til AV - + PID set to ON PID satt til PÅ - + Unable Ikke mulig - + No data received Ingen data mottatt - + Reading Ramp/Soak %1 ... Leser Ramp/Soak %1 ... - + problem reading Ramp/Soak problem med å lese Ramp/Soak - + Current pid = %1. Proceed with autotune command? Current pid = %1. Fortsett med autotune kommando? - + Autotune cancelled Autotune kansellert - + UNABLE to set Autotune IKKE MULIG å sette Autotune - + SV SV - + Ramp (MM:SS) Ramp (MM:SS) - + Soak (MM:SS) Soak (MM:SS) - + Work in Progress Arbeid pågår - + sending commands for p%1 i%2 d%3 sender kommando for p%1 i%2 d%3 - + %1 successfully sent to pid - + pid changed to %1 @@ -6390,157 +6385,157 @@ Continue? Tab - + HUD HUD - + Plotter Plotter - + Math Matte - + UI UI - + General Generell - + Notes Notat - + Events Hendelse - + Data Data - + Config Konfig - + Buttons Knapper - + Sliders Glidebrytere - + Palettes Paletter - + Style Stil - + ET/BT MT/BT - + Extra Ekstra - + Modbus Modbus - + Scale Skala - + Extra Devices Ekstra utstyr - + Symb ET/BT Symb MT/BT - + Graph Graf - + LCDs LCDs - + RS RS - + SV SV - + PID PID - + Set RS Sett RS - + Color Farge - + Quantifiers - + Ramp/Soak - + Phidgets - + Filter - + Espresso @@ -6558,12 +6553,12 @@ Continue? Rel Tid - + ET MT - + BT BT @@ -6623,242 +6618,242 @@ Continue? %1 HENDELSE #%2 %3%4 - + Time Tid - + Description Beskrivelse - + Type Type - + Value Verdi - + Label Merke - + Action Handling - + Documentation Dokumentasjon - + Visibility Sikt - + Color Farge - + Text Color Tekst Farge - + Device Utstyr - + Comm Port Komm Port - + Baud Rate Baud Rate - + Byte Size Byte Størrelse - + Parity Paritet - + Stopbits Stopbits - + Timeout Tidsavbrudd - + Color 1 Farge 1 - + Color 2 Farge 2 - + Label 1 Betegnelse 1 - + Label 2 Betegnelse 2 - + y1(x) y1(x) - + y2(x) y2(x) - + LCD 1 LCD 1 - + LCD 2 LCD 2 - + Curve 1 Kurve 1 - + Curve 2 Kurve 2 - + Parent Hoved - + Width Bredde - + Opaqueness Opasitet - + Delete Wheel Slett Hjul - + Edit Labels Rediger Betegnelse - + Update Labels Oppdater Beegnelse - + Properties Egenskaper - + Radius Radius - + Starting angle Startvinkel - + Projection Projeksjon - + Text Size Tekst Størrelse - + Color Pattern Farge Mønster - + Status Status - + If Alarm Om Alarm - + From Fra - + Source Kilde - + Condition Betingelse - + Temp Temp - + SV SV - + Ramp HH:MM Ramp HH:MM - + Soak HH:MM Soak HH:MM @@ -6868,85 +6863,90 @@ Continue? START - + DRY END TØRKE SLUTT - + FC START 1K START - + FC END 1K SLUTT - + SC START 2K START - + SC END 2K SLUTT - + DROP DROPP UT - + COOL KJØLE - + EVENT #%2 %3%4 HENDELSE #%2 %3%4 - + CHARGE - + But Not - + DeltaET DeltaMT - + DeltaBT - + EVENT #%1 %2%3 - + Beep Beep - + Name - + Weight Vekt + + + Nr + + Textbox @@ -7323,42 +7323,42 @@ Skarphet Oppdaterer hendelse - + <b>Label</b>= <b>Betegnelse</b>= - + <b>Description </b>= <b>Beskrivelse </b>= - + <b>Type </b>= <b>Type </b>= - + <b>Value </b>= <b>Verdi </b>= - + <b>Documentation </b>= <b>Dokumentasjon </b>= - + <b>Button# </b>= <b>Knapp# </b>= - + Save image using current graph size to a png format Lagre bilde med gjeldende graf størrelse i png format - + linear: linear interpolation cubic: 3rd order spline interpolation nearest: y value of the nearest point @@ -7367,47 +7367,47 @@ Kubisk: 3dje ordens glattet interpolasjon nærmeste: y verdi til nærmeste punkt - + ON/OFF logs serial communication Slå PÅ/AV logging av seriell kommunikasjon - + Automatic generated name = This text + date + time Automatisk generert navn =This text + dato + tid - + ON/OFF of automatic saving when pressing keyboard letter [a] Slå PÅ/AV automatisk lagring når man trykker tastatur bokstav [a] - + Sets the directory to store batch profiles when using the letter [a] Setter katalog for å lagre gruppe profiler når man bruker bokstav [a] - + Allows to enter a description of the last event Tillater å legge inn beskrivelse av siste hendelse - + Add new extra Event button Legg til ny ekstra Hendelse knapp - + Delete the last extra Event button Slett siste ekstra Hendelse knapp - + Show help Vis hjelp - + Backup all palettes to a text file Sikkerhetskopi av alle paletter til en tekst fil @@ -7417,117 +7417,117 @@ nærmeste: y verdi til nærmeste punkt Gjenopprett alle paletter fra tekst - + Action Type Handlings type - + Action String handlings Streng - + Aspect Ratio Høyde/bredde forhold - + Example: 100 + 2*x Eksempel: 100 + 2*x - + Example: 100 + x Eksempel: 100 + x - + Erases wheel parent hierarchy Sletter overordnet hierarki for hjul - + Sets graph hierarchy child->parent instead of parent->child Setter graf hierarki til underordnet-> overordnet istedetfor overordnet->underordnet - + Increase size of text in all the graph Øker størrelse på tekst i alle grafer - + Decrease size of text in all the graph Minker størrelse på tekst i alle grafer - + Decorative edge beween wheels Dekorativ kant mellom hjul - + Line thickness Linje tykkelse - + Line color Linje farge - + Apply color pattern to whole graph Lagg til farge mønster til hel e grafen - + Add new wheel Legg til nytt hjul - + Rotate graph 1 degree counter clockwise Roter graf 1 grad mot klokken - + Rotate graph 1 degree clockwise Roter graf 1 grad med klokken - + Save graph to a text file.wg Lagre graf til tekst fil .wg - + Sets Wheel graph to view mode Setter hjul graf til synlig modus - + open graph file.wg åpne graf fil .wg - + Close wheel graph editor Lukk hjul graf redigering - + Restore all palettes from a text file Gjenopprett alle paletter fra tekst - + Clear alarms table - + Interval diff --git a/translations/artisan_pl.ts b/translations/artisan_pl.ts index 068c863e6..e5825816b 100644 --- a/translations/artisan_pl.ts +++ b/translations/artisan_pl.ts @@ -132,102 +132,102 @@ END - + Update Aktualizuj - + OK - + Cancel Anuluj - + Color Kolor - + Plot Wykreśl - + Background Tło - + Virtual Device Urządzenie wirtualne - + Save Image Zapisz obraz - + Help Pomoc - + Info Info - + Set Ustaw - + Defaults Domyślne - + Order Uporządkuj - + Add Dodaj - + Delete Usuń - + in - + out - + scan skanuj - + Search Szukaj - + Path Ścieżka @@ -242,487 +242,487 @@ END Odzyskaj z - + Save Zapisz - + Load Załaduj - + Apply Zastosuj - + Del Del - + Align Wyrównaj - + Up Do góry - + Down Na dół - + Left Do lewej - + Right Do prawej - + Reset - + Close Zamknij - + Create Utwórz - + Select Wybierz - + Grid Siatka - + Title Tytuł - + Y Label Tytuł osi Y - + X Label Tytuł osi X - + Drying Phase Faza suszenia - + Maillard Phase Faza Maillarda - + Development Phase Faza rozwinięcia - + Cooling Phase Faza chłodzenia - + ET - + BT - + DeltaET - + DeltaBT - + Markers Markery - + Text Tekst - + Watermarks Znaki wodne - + C Lines - + Grey Szary - + LED - + B/W - + Reset Parents Wyzeruj rodziców - + Reverse Hierarchy Odwróć hierarhię - + + - + - - + Line Color Kolor linii - + < - + > - + Save File Zapisz plik - + Save Img Zapisz obraz - + View Mode Tryb przeglądania - + Open Otwórz - + Set Color Ustaw kolor - + All On Włącz wszystko - + All Off Wyłącz wszystko - + Insert Wstaw - + Clear Wyczyść - + Read Ra/So values Wczytaj Ra/Sa - + RampSoak ON - + RampSoak OFF - + PID OFF - + PID ON - + Write SV - + SV Buttons ON - + SV Buttons OFF - + Read SV - + Set p - + Set i - + Set d - + Autotune ON Autostrojenie Wł. - + Autotune OFF Autostrojenie Wył. - + Read PID Values - + Read - + Set ET PID to 1 decimal point - + Set BT PID to 1 decimal point - + Write All Zapisz wszystko - + Read RS values - + Write RS values - + Write SV1 - + Write SV2 - + Write SV3 - + Write SV4 - + Write SV5 - + Write SV6 - + Write SV7 - + ON SV buttons - + OFF SV buttons - + Read SV (7-0) - + Write SV (7-0) - + pid 1 - + pid 2 - + pid 3 - + pid 4 - + pid 5 - + pid 6 - + pid 7 - + Read PIDs - + Write PIDs - + Set ET PID to MM:SS time units - + On - + Off - + Write Zapisz - + calc - + unit - + << - + >> @@ -730,317 +730,317 @@ END CheckBox - + Heavy FC - + Low FC - + Light Cut - + Dark Cut - + Drops - + Oily - + Uneven - + Tipping - + Scorching - + Divots - + DeltaET - + DeltaBT - + Smooth Spikes - + Smooth2 - + Drop Spikes - + Limits Granice - + Projection Projekcja - + Decimal Places Miejsca po przecinku - + Show Pokaż - + Beep Sygnał - + Delete roast properties on RESET Usuń właściwości palenia po RESET - + Serial Log ON/OFF Włącz/Wyłącz logi portu szeregowego - + Autosave [a] Autozapis [a] - + Lock Max - + Button Przycisk - + Mini Editor Mini Edytor - + Auto CHARGE - + Auto DROP - + Mark TP - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL END - + Auto Adjusted Auto dopasowane - + Watermarks Znaki wodne - + Phases LCDs Wyświetlacz faz - + Auto DRY - + Auto FCs - + Background Tło - + Text Tekst - + Events Zdarzenia - + Align FCs - + Playback Aid - + Time Czas - + Bar słupek - + /min - + ETBTa - + Evaluation Ewaluacja - + Characteristics Charakterystyka - + ET - + BT - + Modbus Port - + Control Button Przycisk kontrolny - + Ratiometric - + Load alarms from profile Załaduj alarmy z profilu - + Start PID on CHARGE Uruchom PID wraz z CHARGE - + Load Ramp/Soak table from profile Załaduj tabelę Ramp/Soak z profilu - + Alarm Popups Komunikaty alarmów - + Lock @@ -1068,147 +1068,147 @@ END Wentylator - + linear liniowy - + newton Newtona - + metrics metryczny - + thermal termiczny - + classic klasyczny - + xkcd - + Default Domyślny - + Humor - + Comic - + cubic sześcienny - + nearest najbliższy - + DeltaET - + DeltaBT - + ET - + BT - + g - + Kg - + ml - + l - + upper right prawy górny - + upper left lewy górny - + lower left lewy dolny - + lower right prawy dolny - + right w prawo - + center left lewy środek - + center right prawy środek - + lower center dolny środek - + upper center górny środek - + center środek @@ -1218,332 +1218,332 @@ END 30 sekund - + 1 minute 1 minuta - + 2 minute 2 minuty - + 3 minute 3 minuty - + 4 minute 4 minuty - + 5 minute 5 minut - + solid ciągły - + dashed przerywany - + dashed-dot przerywany-kropkowany - + dotted kropkowany - + None Brak - + Event #0 Zdarzenie #0 - + Event #%1 Zdarzenie #1 - + lb funt (lb) - + liter litr - + gallon galon - + quart kwarta - + pint pint - + cup cup - + cm^3 - + Type Typ - + Value Wartość - + Serial Command Polecenie łącza szeregowego - + Modbus Command Polecenie magistrali Modbus - + DTA Command Polecenie DTA - + Call Program Wywołaj program - + IO Command Polecenie We/Wy - + OFF - + ON - + Multiple Event Wielokrotne zdarzenie - + SV Commands Polecenie SV - + Ramp Commands Polecenie Ramp - + little-endian - + grey szary - + Dark Grey Ciemnoszary - + Slate Grey Niebieskoszary - + Light Gray Jasnoszary - + Black Czarny - + White Biały - + Transparent Przeźroczysty - + Flat Płaski - + Perpendicular Ostry pionowy - + Radial Kołowy - + START - + CHARGE - + TP - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL - + below poniżej - + above powyżej - + Pop Up Komunikat - + Event Button Przycisk zdarzenia - + Slider Suwak - + DRY - + FCs - + FCe - + SCs - + SCe - + COOL END - + Hottop Heater - + Hottop Fan - + Hottop Command @@ -1609,12 +1609,12 @@ END Directory - + profiles profile - + other inne @@ -1622,12 +1622,12 @@ END Error Message - + Exception: Wyjątek: - + Value Error: Wartość błędu: @@ -1637,7 +1637,7 @@ END Błąd: - + IO Error: Błąd We/Wy: @@ -1647,142 +1647,142 @@ END Błąd - + Univariate: no profile data available Univariate: brak danych profilu - + Polyfit: no profile data available Polyfit: brak danych profilu - + Unable to move CHARGE to a value that does not exist Nie można nadać CHARGE nieistniejącej wartości - + Modbus Error: Błąd Modbus: - + Serial Exception: Wyjątek komunikacji szeregowej: - + F80h Error Błąd F80h - + CRC16 data corruption ERROR. TX does not match RX. Check wiring Błędy danych CRC16. TX nie pokrywa się z RX. Sprawdź połączenie - + No RX data received Nie odebrano danych RX - + DTAcommand(): %1 bytes received but 15 needed DTAcommand(): odebrano %1 bajty(ów) ale potrzeba 15 - + Unable to open serial port - + MS6514temperature(): %1 bytes received but 16 needed MS6514temperature(): odebrano %1 bajty(ów) ale potrzeba 16 - + HH806AUtemperature(): %1 bytes received but 16 needed HH806AUtemperature(): odebrano %1 bajty(ów) ale potrzeba 16 - + HH806Wtemperature(): Unable to initiate device HH806Wtemperature(): Nie można zainicjować urządzenia - + HH506RAGetID: %1 bytes received but 5 needed HH506RAGetID: odebrano %1 bajty(ów) ale potrzeba 5 - + HH506RAtemperature(): Unable to get id from HH506RA device HH506RAtemperature(): Nie można pobrać identyfikatora id z urządzenia HH506RA - + HH506RAtemperature(): %1 bytes received but 14 needed HH506RAtemperature(): odebrano %1 bajty(ów) ale potrzeba 14 - + CENTER302temperature(): %1 bytes received but 7 needed CENTER302temperature(): odebrano %1 bajty(ów) ale potrzeba 7 - + CENTER303temperature(): %1 bytes received but 8 needed CENTER303temperature(): odebrano %1 bajty(ów) ale potrzeba 8 - + CENTER306temperature(): %1 bytes received but 10 needed CENTER306temperature(): odebrano %1 bajty(ów) ale potrzeba 10 - + CENTER309temperature(): %1 bytes received but 45 needed CENTER309temperature(): odebrano %1 bajty(ów) ale potrzeba 45 - + Arduino could not set channels Arduino nie może ustanowić kanałów - + Arduino could not set temperature unit Arduino nie może okreslić jednostki temperatury - + Serial Exception: invalid comm port Wyjątek transmisji szeregowej: nieprawidłowy port szeregowy - + Serial Exception: timeout Wyjątek komunikacji szeregowej: przekroczenie limitu czasu - + Segment values could not be written into PID Wartości segmentowe nie mogą zostać zapisane do PID - + RampSoak could not be changed Nie można zmienić RampSoak - + pid.readoneword(): %1 RX bytes received (7 needed) for unit ID=%2 pid.readoneword(): odebrano %1 bajtów RX (potrzeba 7) dla modułu ID=%2 - + Arduino could not set filters Arduino nie może ustawić filtrów @@ -1843,147 +1843,147 @@ END Form Caption - + Extras Dodatki - + Roast Properties Właściwości palenia - + Artisan Platform Platforma Artisana - + Settings Viewer Podgląd ustawień - + Serial Log Logi portu szeregowego - + Error Log Logi błędów - + Message History Historia powiadomień - + Keyboard Autosave [a] Autozapis z klawiatury [a] - + AutoSave Path Autozapis ścieżka dostępu - + Axes Osie - + Roast Calculator Kalkulator palenia - + Events Zdarzenia - + Roast Phases Fazy palenia - + Cup Profile Profil sensoryczny - + Profile Background Tło profilu - + Statistics Statystyki - + Designer Config Konfiguracja Designera - + Manual Temperature Logger Ręczna rejestracja temperatury - + Serial Ports Configuration Konfiguracja portów szeregowych - + Device Assignment Przypisanie urządzeń - + Colors Kolory - + Wheel Graph Editor Edytor wykresów kołowych - + Alarms Alarmy - + Fuji PXR PID Control - + Fuji PXG PID Control - + Arduino Control - + Delta DTA PID Control - + Volume Calculator Kalkulator objętości - + Tare Setup Ustawienia tary @@ -1991,247 +1991,247 @@ END GroupBox - + Curves Krzywe - + LCDs Wyświetlacze - + HUD - + Input Filters Filtry wejściowe - + Look Wygląd - + Interpolate Interpolacja - + Univariate Jednozmienna - + Polyfit Wielomianowa - + Appearance Wygląd - + Resolution Rozdzielczość - + Sound Dźwięk - + Times Czasy - + Time Axis Oś czasu - + Temperature Axis Oś temperatury - + DeltaBT/DeltaET Axis Oś DeltaBT/DeltaET - + Legend Location Pozycja legendy - + Grid Siatka - + Rate of Change Wskaźnik zmian - + Temperature Conversion Konwersja temperatury - + Weight Conversion Konwersja masy - + Volume Conversion Konwersja objętości - + Event Types Typy zdarzeń - + Default Buttons Domyślne przyciski - + Management Zarządzanie - + Evaluation Ewaluacja - + Display Wyświetlacz - + Initial Settings Ustawienia początkowe - + Input 1 Wejście 1 - + Input 2 Wejście 2 - + Input 3 Wejście 3 - + Input 4 Wejście 4 - + Phidgets 1045 - + Phidgets 1046 RTD - + Phidget IO - + Network Sieć - + PID - + Arduino TC4 - + External Program Program zewnętrzny - + Symbolic Assignments Formuła matematyczna - + Timer LCD - + ET LCD - + BT LCD - + DeltaET LCD - + DeltaBT LCD - + Extra Devices / PID SV LCD Dodatkowe urządzenia / PID SV LCD - + Label Properties Właściwości etykiety - + p-i-d - + Set Value Ustaw wartość - + WebLCDs @@ -2241,12 +2241,12 @@ END Okres próbkowania - + Phidgets 1048/1051 - + Sampling @@ -2437,12 +2437,12 @@ END Label - + ET - + BT @@ -2457,47 +2457,47 @@ END - + at - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL @@ -2507,7 +2507,7 @@ END - + min @@ -2572,7 +2572,7 @@ END - + Time Czas @@ -2662,932 +2662,932 @@ END otoczenie - + City - + City+ - + Full City - + Full City+ - + Light French - + French - + at %1 - + %1 after FCs - + %1 after FCe - + ET - BT = %1 - + ET - BT = %1%2 - + HUD Button Przycisk HUD - + ET Target 1 - + BT Target 1 - + ET Target 2 - + BT Target 2 - + Mode Tryb - + ET p-i-d 1 - + Smooth Deltas Wygładź Delty - + Smooth Curves Wygładź krzywe - + Window Okno - + max - + Path Effects - + Style Styl - + Font Czcionka - + Y(x) - + Start - + End - + Title Tytuł - + Date Data - + Beans Ziarna - + Weight Masa - + in - + out - + % - + Volume Objętość - + Density Gęstość - + per na - + Bean Size Rozmiar ziaren - + mm - + Whole Color Kolor całych ziaren - + Ground Color Kolor zmielonych - + Moisture Greens Wilgotność zielonych ziaren - + % - + Moisture Roasted Wilgotność palonych ziaren - + Ambient Conditions Warunki otoczenia - + Roaster Maszyna - + Operator Operator - + Roasting Notes Notatki z procesu palenia - + Cupping Notes Notatki z cuppingu - + Ambient Source Źródło otoczenia - + Density in: %1 g/l => Density out: %2 g/l Gęstość pocz.: %1 g/l => Gęstość końc.: %2 g/l - + (%1 g/l) - + Number of errors found %1 Ilość znalezionych błędów %1 - + Prefix Przedrostek - + Max - + Min - + Rotation Obrót - + Initial Max Pocz. Max - + Step Krok - + Width Szerokość - + Opaqueness Nieprzejrzystość - + Enter two times along profile Podaj dwa czasy z przebiegu profilu - + Start (00:00) - + End (00:00) - + Fahrenheit Fahrenheita - + Celsius Celsjusza - + Time syntax error. Time not valid Błąd składni czasu. Niewłaściwy czas - + Error: End time smaller than Start time Błąd: Czas końcowy mniejszy niż początkowy - + Best approximation was made from %1 to %2 Najlepsza aproksymacja została wykonana od %1 do %2 - + <b>%1</b> %2/sec, <b>%3</b> %4/min - + No profile found Nie znaleziono profilu - + Bars Słupki - + Color Kolor - + Marker Znacznik - + Thickness Grubość - + Opacity Nieprzejrzystość - + Size Rozmiar - + Max buttons per row Maksimum przycisków w rzędzie - + Color Pattern Wzorzec koloru - + palette # paleta # - + Event Zdarzenie - + Action Akcja - + Command Polecenie - + Offset - + Factor Mnożnik - + Source Źródło - + Coarse Gruby - + Drying Suszenie - + Maillard - + Development Rozwinięcie - + Default Domyślny - + Aspect Ratio Proporcje - + ET Color Kolor ET - + BT Color Kolor BT - + DeltaET Color Kolor DeltaET - + DeltaBT Color Kolor DeltaBT - + Text Warning Ostrzeżenie tekstowe - + sec - + Cooling Chłodzenie - + Curviness Krzywizna - + Events Playback Odtwarzanie zdarzeń - + Comm Port Port szeregowy - + Baud Rate Szybkośc transmisji - + Byte Size Długość bajtu - + Parity Parzystość - + Stopbits Bity stopu - + Timeout - + Settings for non-Modbus devices Ustawienia dla urządzeń innych niż MODBUS - + Slave - + Register Rejestr - + Float - + Function Funkcja - + Type Typ - + Host - + Port - + Device Urządzenie - + Control ET Kontrola ET - + Read BT Odczyt BT - + RS485 Unit ID - + ET Channel Kanał ET - + BT Channel Kanał BT - + AT Channel Kanał AT - + ET Y(x) - + BT Y(x) - + Async - + Change Zmień - + Gain Wzmocnienie - + Wiring Konfiguracja - + Rate Wskaźnik - + Raw Czysty - + ServerId: - + Password: - + Ratio Stosunek - + Text Tekst - + Edge Krawędź - + Line Linia - + Color pattern Wzorzec koloru - + dg - + Enter description Podaj opis - + Ramp Soak HH:MM<br>(1-4) - + Ramp Soak HH:MM<br>(5-8) - + Ramp/Soak Pattern Wzorzec Ramp/Soak - + WARNING UWAGA - + Writing eeprom memory Zapisywanie pamięci eeprom - + <u>Max life</u> 10,000 writes <u>Max life</u> 10,000 zapisów - + Infinite read life. - + After <u>writing</u> an adjustment,<br>never power down the pid<br>for the next 5 seconds <br>or the pid may never recover. Po <u>zapisaniu</u>ustawień,<br>nigdy nie wyłączaj urządzenia<br>przez 5 sekund <br>albo pid może się nigdy nie obudzić. - + Read operations manual Przeczytaj podręcznik użytkownika - + NOTE: BT Thermocouple type is not stored in the Artisan settings Zauważ: typ termopary BT nie jest zapisany w ustawieniach Artisana - + Artisan uses 1 decimal point Artisan stosuje jedno miejsce po przecinku - + ET Thermocouple type Typ termopary ET - + BT Thermocouple type Typ termopary BT - + Ramp Soak (MM:SS)<br>(1-7) - + Ramp Soak (MM:SS)<br>(8-16) - + Pattern Wzorzec - + SV (7-0) - + Write Zapisz - + P - + I - + D - + Artisan Fuji PXG uses MINUTES:SECONDS units in Ramp/Soaks - + Cycle - + SV - + Lookahead - + Manual Podręcznik - + Ramp/Soak - + Background Tło - + SV Buttons Przyciski SV - + SV Slider Suwak SV - + Delta Span Rozpiętość Delta - + Unit Jednostka - + ml - + Unit Weight Masa jednostki - + g - + Kg - + l - + in - + out - + Moisture loss: %1% Organic loss: %2% Utrata wilgotności: %1% utrata materii: %2% - + Filter Filtr - + Emissivity - + ON - + OFF - + %1 to reach ET %2 - + %1 to reach BT %2 @@ -3597,17 +3597,17 @@ END - + XT Color - + XT - + current palette @@ -3653,52 +3653,52 @@ END Marker - + Circle - + Square - + Pentagon - + Diamond - + Star - + Hexagon 1 - + Hexagon 2 - + + - + x - + None @@ -4333,7 +4333,7 @@ Brak profilu [CHARGE] lub [DROP] Utworzono nowy profil - + Open Wheel Graph Otwórz wykres kołowy @@ -4503,7 +4503,7 @@ Brak profilu [CHARGE] lub [DROP] Wybierz katalog - + No profile found Nie znaleziono profilu @@ -4625,342 +4625,342 @@ Kontynuować? Krótki okres próbkowania może prowadzić do niestabilności na niektórych maszynach. Sugerujemy minimum 3s. - + Alarm Config Konfiguracja alarmu - + Alarms are not available for device None Alarmy niedostępne dla urządzenia None - + Switch Language Przełącz język - + Language successfully changed. Restart the application. Pomyślnie zmieniono język. Ponownie uruchom aplikację. - + Import K202 CSV Importuj K202 CSV - + K202 file loaded successfully Pomyślnie załadowano plik K202 - + Import K204 CSV Importuj K204 CSV - + K204 file loaded successfully Pomyślnie załadowano plik K204 - + Import HH506RA CSV Importuj HH506RA CSV - + HH506RA file loaded successfully Pomyślnie załadowano plik HH506RA - + Save Graph as PNG Zapisz wykres w formacie PNG - + %1 size(%2,%3) saved Zapisano %1 rozmiar(%2,%3) - + Save Graph as PDF Zapisz wykres w formacie PDF - + Save Graph as SVG Zapisz wykres w formacie SVG - + %1 saved Zapisano %1 - + Invalid Wheel graph format Niewłaściwy format wykresu kołowego - + Wheel Graph succesfully open Pomyślnie otworzono wykres kołowy - + Return the absolute value of x. Zwraca wartość bezwzględną x. - + Return the arc cosine (measured in radians) of x. Zwraca arcus cosinus x (w radianach). - + Return the arc sine (measured in radians) of x. Zwraca arcus sinus x (w radianach). - + Return the arc tangent (measured in radians) of x. Zwraca arcus tangens x (w radianach). - + Return the cosine of x (measured in radians). Zwraca cosinus x (w radianach). - + Convert angle x from radians to degrees. Konwersja kąta x: radiany na stopnie. - + Return e raised to the power of x. Zwraca e podniesione do potęgi x. - + Return the logarithm of x to the given base. Zwraca logarytm z x o danej podstawie. - + Return the base 10 logarithm of x. Zwraca logarytm dziesiętny z x. - + Return the minimum of x and y. Zwraca minumum z x i y. - + Return the maximum of x and y. Zwraca maksimum z x i y. - + Return x**y (x to the power of y). Zwraca x**y (x do potęgi y). - + Convert angle x from degrees to radians. Konwersja kąta x: stopnie na radiany. - + Return the sine of x (measured in radians). Zwraca sinus x (w radianach). - + Return the square root of x. Zwraca pierwiastek kwadratowy z x. - + Return the tangent of x (measured in radians). Zwraca tangens x (w radianach). - + current background ET Bieżące tło ET - + current background BT Bieżące tło BT - + MATHEMATICAL FUNCTIONS FUNKCJE MATEMATYCZNE - + SYMBOLIC VARIABLES ZMIENNE SYMBOLICZNE - + Symbolic Functions Funkcje symboliczne - + Save Palettes Zapisz palety - + Palettes saved Palety zostały zapisane - + Invalid palettes file format Niewłaściwy format plików palet - + Palettes loaded Palety zostały załadowane - + Load Palettes Załaduj palety - + Alarms loaded Alarmy załadowano - + Interpolation failed: no profile available Interpolacja nie powiodła się: brak dostępnego profilu - + Sound turned ON Dźwięk włączony - + Sound turned OFF Dźwięk wyłączony - + [ET target 1 = %1] [BT target 1 = %2] [ET target 2 = %3] [BT target 2 = %4] - + Event #%1 added Zdarzenie #%1 dodane - + Event #%1 deleted Zdarzenie #%1 usunięte - + No events found Nie znaleziono zdarzeń - + Roast properties updated but profile not saved to disk Właściwości palenia aktualne, ale nie zapisano profilu na dysku - + Autosave ON. Prefix: %1 Autozapis włączony. Przedrostek: %1 - + Autosave OFF Autozapis wyłączony - + xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) - + <b>Event</b> hide or show the corresponding slider <b>Zdarzenie</b> ukryj lub pokaż odpowiedni suwak - + <b>Action</b> Perform an action on slider release <b>Akcja</b> Wykonaj akcję wraz z uruchomieniem suwaka - + <b>Command</b> depends on the action type ('{}' is replaced by <i>value</i>*<i>factor</i> + <i>offset</i>) <b>Polecenie</b> zależy od typu akcji ('{}'zostanie zastąpiony przez <i>wartość</i>*<i>czynnik</i> + <i>offset</i>) - + Serial Command: ASCII serial command or binary a2b_uu(serial command) - + DTA Command: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating - + <b>Offset</b> added as offset to the slider value <b>Offset</b> dodano jako offset do wartości suwaka - + <b>Factor</b> multiplicator of the slider value <b>Factor</b> mnożnik wartości suwaka - + Event custom buttons Własne przyciski zdarzeń - + Event configuration saved Konfiguracja zdarzeń zapisana - + Found empty event type box Znaleziono pusty box typu zdarzenie - + <b>Button Label</b> Enter \n to create labels with multiple lines. <b>Etykieta przycisku</b> Wpisz \n by utworzyć kolejny wiersz etykiety. - + <b>Event Description</b> Description of the Event to be recorded. <b>Opis zdarzenia</b> Opis zdarzenia, które ma zostać zapisane. - + <b>Event type</b> Type of event to be recorded. <b>Typ zdarzenia</b> Typ zdarzenia, które ma zostać zapisane. @@ -4970,525 +4970,525 @@ Kontynuować? <b>Wartość zdarzenia</b> Wartość zdarzenia (1-10), które ma zostać zapisane. - + <b>Action</b> Perform an action at the time of the event <b>Czynność</b> Czynność do wykonania w czasie zdarzenia - + <b>Documentation</b> depends on the action type ('{}' is replaced by the event value): <b>Dokumentacja</b> zależy od typu czynności ('{}' zostanie zastąpione wartością zdarzenia): - + Call Program: A program/script path (absolute or relative) Wywołaj Program: Ścieżka dostępu (absolutna lub wzgędna) do programu/skryptu - + Multiple Event: Adds events of other button numbers separated by a comma: 1,2,3, etc. Wielokrotne zdarzenie: Dodaje zdarzenia o numerach innych przycisków, oddzielonych przecinkiem: 1,2,3, itd. - + IO Command: set(n,0), set(n,1), toggle(n) to set Phidget IO digital output n - + <b>Button Visibility</b> Hides/shows individual button <b>Widzialność przycisku</b> Ukrywa/pokazuje dany przycisk - + <b>Keyboard Shorcut: </b> [b] Hides/shows Extra Button Rows <b>Skrót klawiszowy: </b> [b] Ukrywa/pokazuje linie przycisków dodatkowych - + Phases changed to %1 default: %2 Zmieniono fazy na %1 domyślne: %2 - + Background profile not found Nie znaleziono profilu-tła - + Background does not match number of labels Tło nie pokrywa się z ilością etykiet - + Playback Aid set ON at %1 secs Playback Aid set ON at %1 secs - + No profile background found Nie znaleziono tła profilu - + Reading background profile... Wczytywanie profilu-tła... - + Phidget Temperature Sensor IR attached - + Phidget Temperature Sensor 4-input attached - + Phidget Bridge 4-input attached - + Phidget 1018 IO attached - + Yocto Thermocouple attached - + Yocto PT100 attached - + Not enough time points for an ET curviness of %1. Set curviness to %2 Za mało punktów czasowych dla krzywizny ET w %1. Ustaw krzywiznę na %2 - + Designer Config Konfiguracja Designera - + Not enough time points for an BT curviness of %1. Set curviness to %2 Za mało punktów czasowych dla krzywizny BT w %1. Ustaw krzywiznę na %2 - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + Incorrect time format. Please recheck %1 time Niewłaściwy format czasu. Sprawdź ponownie czas %1 - + Times need to be in ascending order. Please recheck %1 time Czasy muszą być w porządku rosnącym. Sprawdź ponownie czas %1 - + Designer has been reset Designer został zresetowany - + The MODBUS device corresponds to input channels - + 1 and 2.. The MODBUS_34 extra device adds - + input channels 3 and 4. Inputs with slave - + id set to 0 are turned off. Modbus function 3 - + 'read holding register' is the standard. - + Modbus function 4 triggers the use of 'read - + input register'. Input registers (fct 4) usually - + are from 30000-39999. Most devices hold data in - + 2 byte integer registers. A temperature of 145.2C - + is often sent as 1452. In that case you have to - + use the symbolic assignment 'x/10'. Few devices - + hold data as 4 byte floats in two registers. - + Tick the Float flag in this case. - + Serial Port Settings: %1, %2, %3, %4, %5, %6 - + External program Program zewnętrzny - + Device not set - + PID to control ET set to %1 %2 ; PID to read BT set to %3 %4 - + Device set to %1. Now, check Serial Port settings - + Device set to %1. Now, chose serial port - + Device set to CENTER 305, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 309. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 303. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH506RA. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH806AU. Now, chose serial port - + Device set to %1 - + Device set to %1%2 - + Device set to %1. Now, chose Modbus serial port - + Device set to %1, which is equivalent to CENTER 302. Now, chose serial port - + Color of %1 set to %2 - + Save Wheel graph Zapisz wykres kołowy - + Wheel Graph saved Zapisano wykres kołowy - + Load Alarms Załaduj Alarmy - + Save Alarms Zapisz Alarmy - + <b>Status:</b> activate or deactive alarm <b>Status:</b> aktywuj lub dezaktywuj alarm - + <b>If Alarm:</b> alarm triggered only if the alarm with the given number was triggered before. Use 0 for no guard. - + <b>But Not:</b> alarm triggered only if the alarm with the given number was not triggered before. Use 0 for no guard. - + <b>From:</b> alarm only triggered after the given event - + <b>Time:</b> if not 00:00, alarm is triggered mm:ss after the event 'From' happend - + <b>Source:</b> the temperature source that is observed - + <b>Condition:</b> alarm is triggered if source rises above or below the specified temperature - + <b>Temp:</b> the speficied temperature limit - + <b>Action:</b> if all conditions are fulfilled the alarm triggeres the corresponding action - + <b>Description:</b> the text of the popup, the name of the program, the number of the event button or the new value of the slider - + <b>NOTE:</b> each alarm is only triggered once - + OFF - + CONTINUOUS CONTROL - + ON - + STANDBY MODE - + The rampsoak-mode tells how to start and end the ramp/soak - + Your rampsoak mode in this pid is: - + Mode = %1 - + Start to run from PV value: %1 - + End output status at the end of ramp/soak: %1 - + Output status while ramp/soak operation set to OFF: %1 - + Repeat Operation at the end: %1 - + Recomended Mode = 0 - + If you need to change it, change it now and come back later - + Use the Parameter Loader Software by Fuji if you need to - + Continue? - + Load PID Settings - + Save PID Settings - + Current sv = %1. Change now to sv = %2? - + Change svN - + Current pid = %1. Change now to pid =%2? - + Ramp Soak start-end mode - + Pattern changed to %1 - + Pattern did not changed - + Ramp/Soak was found ON! Turn it off before changing the pattern - + Ramp/Soak was found in Hold! Turn it off before changing the pattern - + Activate PID front buttons - + Remember SV memory has a finite life of ~10,000 writes. @@ -5496,142 +5496,142 @@ Proceed? - + RS ON - + RS OFF - + RS on HOLD - + PXG sv#%1 set to %2 - + PXR sv set to %1 - + SV%1 changed from %2 to %3) - + Unable to set sv%1 - + SV changed from %1 to %2 - + Unable to set sv - + Unable to set new sv - + Load Ramp/Soak Table - + Save Ramp/Soak Table - + PID turned on - + PID turned off - + ET value - + BT value - + Extra #1 T1 value - + Extra #1 T2 value - + Extra #2 T1 value - + Extra #2 T2 value - + Yn holds values sampled in the actual interval if refering to ET/BT or extra channels from devices listed before, otherwise Yn hold values sampled in the previous interval - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) writes values to the registers in slaves specified by the given ids - + <b>Event value</b> Value of event (1-100) to be recorded - + Phidget Temperature Sensor IR detached - + Phidget Temperature Sensor 4-input detached - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) or wcoils(slaveId,register,&lt;bool&gt;) writes values to the registers in slaves specified by the given ids - + Phidget Bridge 4-input detached - + Phidget 1018 IO detached @@ -5640,31 +5640,26 @@ Proceed? Hottop control turned off - - - Hottop control turned on - - Radio Button - + Meter Miernik - + PID - + TC4 - + Program @@ -5753,337 +5748,337 @@ Proceed? StatusBar - + Playback Aid set OFF - + Ready - + Decimal position successfully set to 1 - + Problem setting decimal position - + Problem setting thermocouple type - + setting autotune... - + Autotune successfully turned OFF - + Autotune successfully turned ON - + wait... - + PID OFF - + PID ON - + SV successfully set to %1 - + Empty SV box - + Unable to read SV - + Ramp/Soak operation cancelled - + No RX data - + RS ON - + Need to change pattern mode... - + Pattern has been changed. Wait 5 secs. - + Pattern could not be changed - + RampSoak could not be changed Nie można zmienić RampSoak - + RS OFF - + RS successfully turned OFF - + setONOFFrampsoak(): Ramp Soak could not be set OFF - + getsegment(): problem reading ramp - + getsegment(): problem reading soak - + Reading Ramp/Soak %1 ... - + problem reading Ramp/Soak - + Finished reading Ramp/Soak val. - + Finished reading pid values - + %1 successfully sent to pid - + setpid(): There was a problem setting %1 - + Ramp/Soak successfully written - + Time Units successfully set to MM:SS - + Problem setting time units - + Thermocouple type successfully set - + SV%1 set to %2 - + Problem setting SV - + Cancelled svN change - + PID already using sv%1 - + setNsv(): bad response - + pid changed to %1 - + setNpid(): bad confirmation - + Cancelled pid change - + PID was already using pid %1 - + setNpid(): Unable to set pid %1 - + SV%1 successfully set to %2 - + setsv(): Unable to set SV - + pid #%1 successfully set to (%2,%3,%4) - + pid command failed. Bad data at pid%1 (8,8,8): (%2,%3,%4) - + sending commands for p%1 i%2 d%3 - + getallpid(): Unable to read pid values - + PID is using pid = %1 - + getallpid(): Unable to read current sv - + PID is using SV = %1 - + Ramp Soak could not be set OFF - + PID set to OFF - + PID set to ON - + Unable - + No data received - + Current pid = %1. Proceed with autotune command? - + Autotune cancelled - + UNABLE to set Autotune - + SV - + Ramp (MM:SS) - + Soak (MM:SS) - + Work in Progress @@ -6091,157 +6086,157 @@ Proceed? Tab - + Graph Wykres - + HUD - + Plotter - + Math - + UI - + General Ogólne - + Notes Notatki - + Events Zdarzenia - + Data Dane - + Config Konfiguracja - + Buttons Przyciski - + Sliders Suwaki - + Quantifiers Kwantyfikatory - + Palettes Palety - + Style Styl - + ET/BT - + Extra - + Modbus - + Scale - + Color Kolor - + Extra Devices Dodatkowe urządzenia - + Symb ET/BT - + Phidgets - + LCDs Wyświetlacze - + RS - + SV - + PID - + Set RS - + Ramp/Soak - + Filter Filtr - + Espresso @@ -6249,335 +6244,340 @@ Proceed? Table - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL - + Time Czas - + ET - + BT - + DeltaET - + DeltaBT - + CHARGE - + EVENT #%2 %3%4 - + Description Opis - + Type Typ - + Value Wartość - + Label Etykieta - + Action Akcja - + Documentation Dokumentacja - + Visibility Widoczność - + Color Kolor - + Text Color Kolor tekstu - + EVENT #%1 %2%3 - + Device Urządzenie - + Comm Port Port szeregowy - + Baud Rate Szybkośc transmisji - + Byte Size Długość bajtu - + Parity Parzystość - + Stopbits Bity stopu - + Timeout - + Color 1 Kolor 1 - + Color 2 Kolor 2 - + Label 1 Etykieta 1 - + Label 2 Etykieta 2 - + y1(x) - + y2(x) - + LCD 1 - + LCD 2 - + Curve 1 Krzywa 1 - + Curve 2 Krzywa 2 - + Parent Rodzic - + Width Szerokość - + Opaqueness Nieprzejrzystość - + Delete Wheel Usuń koło - + Edit Labels Edycja etykiet - + Update Labels Aktualizuj etykiety - + Properties Właściwości - + Radius Promień - + Starting angle Kąt początkowy - + Projection Projekcja - + Text Size Rozmiar tekstu - + Color Pattern Wzorzec koloru - + Status Status - + If Alarm Gdy Alarm - + But Not Ale nie - + From Od - + Source Źródło - + Condition Warunek - + Temp - + Beep Sygnał - + SV - + Ramp HH:MM Wzrost HH:MM - + Soak HH:MM Spadek HH:MM - + Name - + Weight Masa + + + Nr + + Textbox @@ -6950,42 +6950,42 @@ Pungency Aktualizacje zdarzenia - + <b>Label</b>= <b>Etykieta</b>= - + <b>Description </b>= <b>Opis </b>= - + <b>Type </b>= <b>Typ </b>= - + <b>Value </b>= <b>Wartość </b>= - + <b>Documentation </b>= <b>Dokumentacja </b>= - + <b>Button# </b>= <b>Przycisk# </b>= - + Save image using current graph size to a png format Zapisz obraz z bieżącym rozmiarem w formacie png - + linear: linear interpolation cubic: 3rd order spline interpolation nearest: y value of the nearest point @@ -6994,162 +6994,162 @@ cubic: interpolacja spline 3-ego rzędu nearest: wartość y najbliższego punktu - + ON/OFF logs serial communication Włącz/Wyłącz logi komunikacji szeregowej - + Automatic generated name = This text + date + time Automatyczna generacja nazwy = Ten tekst + data + czas - + ON/OFF of automatic saving when pressing keyboard letter [a] Włącz/Wyłącz automatyczny zapis, przyciskając klawisz [a] - + Sets the directory to store batch profiles when using the letter [a] Ustawia katalog do przechowywania profili wsadowych, gdy użyjesz klawisza [a] - + Allows to enter a description of the last event Umożliwia dodanie opisu ostatniego zdarzenia - + Add new extra Event button Dodaj nowy dodatkowy przycisk zdarzenia - + Delete the last extra Event button Usuń ostatni dodatkowy przycisk zdarzenia - + Show help Pokaż pomoc - + Backup all palettes to a text file Zapisz kopię wszystkich palet w pliku tekstowym - + Restore all palettes from a text file Odzyskaj wszystkie palety z pliku tekstowego - + Action Type Typ akcji - + Action String Łańcuch akcji - + Aspect Ratio Proporcje - + Example: 100 + 2*x Przykład: 100 + 2*x - + Example: 100 + x Przykład: 100 + x - + Erases wheel parent hierarchy Czyści hierarchię rodziców koła - + Sets graph hierarchy child->parent instead of parent->child Ustawia hierarchię wykresu child->parent zamiast parent->child - + Increase size of text in all the graph Zwiększ rozmiar tekstu we wszystkich wykresach - + Decrease size of text in all the graph Zmniejsz rozmiar tekstu we wszystkich wykresach - + Decorative edge beween wheels Krawędź ozdobna między kołami - + Line thickness Grubość linii - + Line color Kolor linii - + Apply color pattern to whole graph Zastosuj wzorzec koloru do całego wykresu - + Add new wheel Dodaj nowe koło - + Rotate graph 1 degree counter clockwise Obróć wykres o 1 stopień przeciwnie do wskazówek zegara - + Rotate graph 1 degree clockwise Obróć wykres o 1 stopień zgodnie ze wskazówkami zegara - + Save graph to a text file.wg Zapisz wykres do pliku tekstowego.wg - + Sets Wheel graph to view mode Ustawia wykres kołowy w trybie podglądu - + open graph file.wg Otwórz plik wykresu .wg - + Close wheel graph editor Zamknij edytor wykresów kołowych - + Clear alarms table Wyczyść tablicę alarmów - + Interval diff --git a/translations/artisan_pt.ts b/translations/artisan_pt.ts index 56f6a5f6e..55139d0ef 100644 --- a/translations/artisan_pt.ts +++ b/translations/artisan_pt.ts @@ -132,587 +132,587 @@ END - + Update - + OK - + Cancel - + Color - + Plot - + Background - + Virtual Device - + Save Image - + Help - + Info - + Set - + Defaults - + Order - + Add - + Delete - + in - + out - + scan - + Search - + Path - + Save - + Load - + Apply - + Del - + Align - + Up - + Down - + Left - + Right - + Reset - + Close - + Create - + Select - + Grid - + Title - + Y Label - + X Label - + Drying Phase - + Maillard Phase - + Development Phase - + Cooling Phase - + ET - + BT - + DeltaET - + DeltaBT - + Markers - + Text - + Watermarks - + C Lines - + Grey - + LED - + B/W - + Reset Parents - + Reverse Hierarchy - + + - + - - + Line Color - + < - + > - + Save File - + Save Img - + View Mode - + Open - + Set Color - + All On - + All Off - + Insert - + Clear - + Read Ra/So values - + RampSoak ON - + RampSoak OFF - + PID OFF - + PID ON - + Write SV - + SV Buttons ON - + SV Buttons OFF - + Read SV - + Set p - + Set i - + Set d - + Autotune ON - + Autotune OFF - + Read PID Values - + Read - + Set ET PID to 1 decimal point - + Set BT PID to 1 decimal point - + Write All - + Read RS values - + Write RS values - + Write SV1 - + Write SV2 - + Write SV3 - + Write SV4 - + Write SV5 - + Write SV6 - + Write SV7 - + ON SV buttons - + OFF SV buttons - + Read SV (7-0) - + Write SV (7-0) - + pid 1 - + pid 2 - + pid 3 - + pid 4 - + pid 5 - + pid 6 - + pid 7 - + Read PIDs - + Write PIDs - + Set ET PID to MM:SS time units - + On - + Off - + Write - + calc - + unit - + << - + >> @@ -720,317 +720,317 @@ END CheckBox - + Heavy FC - + Low FC - + Light Cut - + Dark Cut - + Drops - + Oily - + Uneven - + Tipping - + Scorching - + Divots - + DeltaET - + DeltaBT - + Smooth Spikes - + Smooth2 - + Drop Spikes - + Limits - + Projection - + Decimal Places - + Show - + Beep - + Delete roast properties on RESET - + Serial Log ON/OFF - + Autosave [a] - + Lock Max - + Button - + Mini Editor - + Auto CHARGE - + Auto DROP - + Mark TP - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL END - + Auto Adjusted - + Watermarks - + Phases LCDs - + Auto DRY - + Auto FCs - + Background - + Text - + Events - + Playback Aid - + Time - + Bar - + ETBTa - + Evaluation - + Characteristics - + ET - + BT - + Modbus Port - + Control Button - + Ratiometric - + Load alarms from profile - + Start PID on CHARGE - + Load Ramp/Soak table from profile - + Align FCs - + /min - + Alarm Popups - + Lock @@ -1058,477 +1058,477 @@ END - + linear - + newton - + metrics - + thermal - + classic - + xkcd - + Default - + Humor - + Comic - + cubic - + nearest - + DeltaET - + DeltaBT - + ET - + BT - + g - + Kg - + ml - + l - + upper right - + upper left - + lower left - + lower right - + right - + center left - + center right - + lower center - + upper center - + center - + 1 minute - + 2 minute - + 3 minute - + 4 minute - + 5 minute - + solid - + dashed - + dashed-dot - + dotted - + None - + Event #0 - + Event #%1 - + lb - + liter - + gallon - + quart - + pint - + cup - + cm^3 - + Type - + Value - + Serial Command - + Modbus Command - + DTA Command - + Call Program - + OFF - + ON - + Multiple Event - + SV Commands - + Ramp Commands - + little-endian - + grey - + Dark Grey - + Slate Grey - + Light Gray - + Black - + White - + Transparent - + Flat - + Perpendicular - + Radial - + START - + CHARGE - + TP - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL - + below - + above - + Pop Up - + Event Button - + Slider - + DRY - + FCs - + FCe - + SCs - + SCe - + COOL END - + IO Command - + Hottop Heater - + Hottop Fan - + Hottop Command @@ -1594,12 +1594,12 @@ END Directory - + profiles - + other @@ -1607,12 +1607,12 @@ END Error Message - + Exception: - + Value Error: @@ -1622,7 +1622,7 @@ END - + IO Error: @@ -1632,142 +1632,142 @@ END - + Univariate: no profile data available - + Polyfit: no profile data available - + Unable to move CHARGE to a value that does not exist - + Modbus Error: - + Serial Exception: - + F80h Error - + CRC16 data corruption ERROR. TX does not match RX. Check wiring - + No RX data received - + DTAcommand(): %1 bytes received but 15 needed - + Unable to open serial port - + MS6514temperature(): %1 bytes received but 16 needed - + HH806AUtemperature(): %1 bytes received but 16 needed - + HH806Wtemperature(): Unable to initiate device - + HH506RAGetID: %1 bytes received but 5 needed - + HH506RAtemperature(): Unable to get id from HH506RA device - + HH506RAtemperature(): %1 bytes received but 14 needed - + CENTER302temperature(): %1 bytes received but 7 needed - + CENTER303temperature(): %1 bytes received but 8 needed - + CENTER306temperature(): %1 bytes received but 10 needed - + CENTER309temperature(): %1 bytes received but 45 needed - + Arduino could not set channels - + Arduino could not set temperature unit - + Serial Exception: invalid comm port - + Serial Exception: timeout - + Segment values could not be written into PID - + RampSoak could not be changed - + pid.readoneword(): %1 RX bytes received (7 needed) for unit ID=%2 - + Arduino could not set filters @@ -1828,147 +1828,147 @@ END Form Caption - + Extras - + Roast Properties - + Artisan Platform - + Settings Viewer - + Serial Log - + Error Log - + Message History - + Keyboard Autosave [a] - + AutoSave Path - + Axes - + Roast Calculator - + Events - + Roast Phases - + Cup Profile - + Profile Background - + Statistics - + Designer Config - + Manual Temperature Logger - + Serial Ports Configuration - + Device Assignment - + Colors - + Wheel Graph Editor - + Alarms - + Fuji PXR PID Control - + Fuji PXG PID Control - + Arduino Control - + Delta DTA PID Control - + Volume Calculator - + Tare Setup @@ -1976,257 +1976,257 @@ END GroupBox - + Curves - + LCDs - + HUD - + Input Filters - + Look - + Interpolate - + Univariate - + Polyfit - + Appearance - + Resolution - + Sound - + Times - + Time Axis - + Temperature Axis - + DeltaBT/DeltaET Axis - + Legend Location - + Grid - + Rate of Change - + Temperature Conversion - + Weight Conversion - + Volume Conversion - + Event Types - + Default Buttons - + Management - + Evaluation - + Display - + Initial Settings - + Input 1 - + Input 2 - + Input 3 - + Input 4 - + Phidget IO - + Network - + PID - + Arduino TC4 - + External Program - + Symbolic Assignments - + Timer LCD - + ET LCD - + BT LCD - + DeltaET LCD - + DeltaBT LCD - + Extra Devices / PID SV LCD - + Label Properties - + p-i-d - + Set Value - + Phidgets 1045 - + Phidgets 1046 RTD - + WebLCDs - + Phidgets 1048/1051 - + Sampling @@ -2412,12 +2412,12 @@ END Label - + ET - + BT @@ -2432,47 +2432,47 @@ END - + at - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL @@ -2482,7 +2482,7 @@ END - + Time @@ -2607,827 +2607,827 @@ END - + City - + City+ - + Full City - + Full City+ - + Light French - + French - + at %1 - + %1 after FCs - + %1 after FCe - + ET - BT = %1 - + ET - BT = %1%2 - + HUD Button - + ET Target 1 - + BT Target 1 - + ET Target 2 - + BT Target 2 - + Mode - + ET p-i-d 1 - + Smooth Deltas - + Smooth Curves - + Window - + min - + max - + Path Effects - + Style - + Font - + Y(x) - + Start - + End - + Title - + Date - + Beans - + Weight - + in - + out - + % - + Volume - + Density - + per - + Bean Size - + mm - + Whole Color - + Ground Color - + Moisture Greens - + % - + Moisture Roasted - + Ambient Conditions - + Roaster - + Operator - + Roasting Notes - + Cupping Notes - + Ambient Source - + Density in: %1 g/l => Density out: %2 g/l - + (%1 g/l) - + Number of errors found %1 - + Prefix - + Max - + Min - + Rotation - + Initial Max - + Step - + Width - + Opaqueness - + Enter two times along profile - + Start (00:00) - + End (00:00) - + Fahrenheit - + Celsius - + Time syntax error. Time not valid - + Error: End time smaller than Start time - + Best approximation was made from %1 to %2 - + No profile found - + Bars - + Color - + Marker - + Thickness - + Opacity - + Size - + Max buttons per row - + Color Pattern - + palette # - + Event - + Action - + Command - + Offset - + Factor - + Source - + Coarse - + Drying - + Maillard - + Development - + Default - + Aspect Ratio - + ET Color - + BT Color - + DeltaET Color - + DeltaBT Color - + Text Warning - + sec - + Cooling - + Curviness - + Events Playback - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Settings for non-Modbus devices - + Slave - + Register - + Float - + Function - + Type - + Host - + Port - + Device - + Control ET - + Read BT - + RS485 Unit ID - + ET Channel - + BT Channel - + AT Channel - + ET Y(x) - + BT Y(x) - + Raw - + ServerId: - + Password: - + Ratio - + Text - + Edge - + Line - + Color pattern - + dg - + Enter description - + Ramp Soak HH:MM<br>(1-4) - + Ramp Soak HH:MM<br>(5-8) - + Ramp/Soak Pattern - + WARNING - + Writing eeprom memory - + <u>Max life</u> 10,000 writes - + Infinite read life. - + After <u>writing</u> an adjustment,<br>never power down the pid<br>for the next 5 seconds <br>or the pid may never recover. - + Read operations manual - + NOTE: BT Thermocouple type is not stored in the Artisan settings - + Artisan uses 1 decimal point - + ET Thermocouple type - + BT Thermocouple type - + Ramp Soak (MM:SS)<br>(1-7) - + Ramp Soak (MM:SS)<br>(8-16) - + Pattern - + SV (7-0) - + Write - + P - + I - + D - + Artisan Fuji PXG uses MINUTES:SECONDS units in Ramp/Soaks - + Cycle - + SV - + Lookahead - + Manual - + Ramp/Soak - + Background - + SV Buttons - + SV Slider @@ -3452,112 +3452,112 @@ END - + <b>%1</b> %2/sec, <b>%3</b> %4/min - + Async - + Change - + Gain - + Rate - + Wiring - + Delta Span - + Unit - + ml - + Unit Weight - + g - + Kg - + l - + in - + out - + Moisture loss: %1% Organic loss: %2% - + Filter - + Emissivity - + ON - + OFF - + %1 to reach ET %2 - + %1 to reach BT %2 @@ -3567,17 +3567,17 @@ END - + XT Color - + XT - + current palette @@ -3623,52 +3623,52 @@ END Marker - + Circle - + Square - + Pentagon - + Diamond - + Star - + Hexagon 1 - + Hexagon 2 - + + - + x - + None @@ -4301,7 +4301,7 @@ Profile missing [CHARGE] or [DROP] - + Open Wheel Graph @@ -4471,7 +4471,7 @@ Profile missing [CHARGE] or [DROP] - + No profile found @@ -4592,850 +4592,850 @@ Continue? - + Alarm Config - + Alarms are not available for device None - + Switch Language - + Language successfully changed. Restart the application. - + Import K202 CSV - + K202 file loaded successfully - + Import K204 CSV - + K204 file loaded successfully - + Import HH506RA CSV - + HH506RA file loaded successfully - + Save Graph as PNG - + %1 size(%2,%3) saved - + Save Graph as PDF - + Save Graph as SVG - + %1 saved - + Invalid Wheel graph format - + Wheel Graph succesfully open - + Return the absolute value of x. - + Return the arc cosine (measured in radians) of x. - + Return the arc sine (measured in radians) of x. - + Return the arc tangent (measured in radians) of x. - + Return the cosine of x (measured in radians). - + Convert angle x from radians to degrees. - + Return e raised to the power of x. - + Return the logarithm of x to the given base. - + Return the base 10 logarithm of x. - + Return the minimum of x and y. - + Return the maximum of x and y. - + Return x**y (x to the power of y). - + Convert angle x from degrees to radians. - + Return the sine of x (measured in radians). - + Return the square root of x. - + Return the tangent of x (measured in radians). - + current background ET - + current background BT - + MATHEMATICAL FUNCTIONS - + SYMBOLIC VARIABLES - + Symbolic Functions - + Save Palettes - + Palettes saved - + Invalid palettes file format - + Palettes loaded - + Load Palettes - + Alarms loaded - + Interpolation failed: no profile available - + Sound turned ON - + Sound turned OFF - + [ET target 1 = %1] [BT target 1 = %2] [ET target 2 = %3] [BT target 2 = %4] - + Event #%1 added - + Event #%1 deleted - + No events found - + Roast properties updated but profile not saved to disk - + Autosave ON. Prefix: %1 - + Autosave OFF - + xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) - + <b>Event</b> hide or show the corresponding slider - + <b>Action</b> Perform an action on slider release - + <b>Command</b> depends on the action type ('{}' is replaced by <i>value</i>*<i>factor</i> + <i>offset</i>) - + Serial Command: ASCII serial command or binary a2b_uu(serial command) - + DTA Command: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating - + <b>Offset</b> added as offset to the slider value - + <b>Factor</b> multiplicator of the slider value - + Event custom buttons - + Event configuration saved - + Found empty event type box - + <b>Button Label</b> Enter \n to create labels with multiple lines. - + <b>Event Description</b> Description of the Event to be recorded. - + <b>Event type</b> Type of event to be recorded. - + <b>Action</b> Perform an action at the time of the event - + <b>Documentation</b> depends on the action type ('{}' is replaced by the event value): - + Call Program: A program/script path (absolute or relative) - + Multiple Event: Adds events of other button numbers separated by a comma: 1,2,3, etc. - + <b>Button Visibility</b> Hides/shows individual button - + <b>Keyboard Shorcut: </b> [b] Hides/shows Extra Button Rows - + Phases changed to %1 default: %2 - + Background profile not found - + Background does not match number of labels - + Playback Aid set ON at %1 secs - + No profile background found - + Reading background profile... - + Phidget Temperature Sensor IR attached - + Phidget Temperature Sensor 4-input attached - + Phidget Bridge 4-input attached - + Phidget 1018 IO attached - + Yocto Thermocouple attached - + Yocto PT100 attached - + Not enough time points for an ET curviness of %1. Set curviness to %2 - + Designer Config - + Not enough time points for an BT curviness of %1. Set curviness to %2 - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + Incorrect time format. Please recheck %1 time - + Times need to be in ascending order. Please recheck %1 time - + Designer has been reset - + The MODBUS device corresponds to input channels - + 1 and 2.. The MODBUS_34 extra device adds - + input channels 3 and 4. Inputs with slave - + id set to 0 are turned off. Modbus function 3 - + 'read holding register' is the standard. - + Modbus function 4 triggers the use of 'read - + 2 byte integer registers. A temperature of 145.2C - + is often sent as 1452. In that case you have to - + use the symbolic assignment 'x/10'. Few devices - + hold data as 4 byte floats in two registers. - + Tick the Float flag in this case. - + Serial Port Settings: %1, %2, %3, %4, %5, %6 - + External program - + Device not set - + PID to control ET set to %1 %2 ; PID to read BT set to %3 %4 - + Device set to %1. Now, check Serial Port settings - + Device set to %1. Now, chose serial port - + Device set to CENTER 305, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 309. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 303. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH506RA. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH806AU. Now, chose serial port - + Device set to %1 - + Device set to %1%2 - + Device set to %1. Now, chose Modbus serial port - + Device set to %1, which is equivalent to CENTER 302. Now, chose serial port - + Color of %1 set to %2 - + Save Wheel graph - + Wheel Graph saved - + Load Alarms - + Save Alarms - + <b>Status:</b> activate or deactive alarm - + <b>If Alarm:</b> alarm triggered only if the alarm with the given number was triggered before. Use 0 for no guard. - + <b>But Not:</b> alarm triggered only if the alarm with the given number was not triggered before. Use 0 for no guard. - + <b>From:</b> alarm only triggered after the given event - + <b>Time:</b> if not 00:00, alarm is triggered mm:ss after the event 'From' happend - + <b>Source:</b> the temperature source that is observed - + <b>Condition:</b> alarm is triggered if source rises above or below the specified temperature - + <b>Temp:</b> the speficied temperature limit - + <b>Action:</b> if all conditions are fulfilled the alarm triggeres the corresponding action - + <b>Description:</b> the text of the popup, the name of the program, the number of the event button or the new value of the slider - + <b>NOTE:</b> each alarm is only triggered once - + OFF - + CONTINUOUS CONTROL - + ON - + STANDBY MODE - + The rampsoak-mode tells how to start and end the ramp/soak - + Your rampsoak mode in this pid is: - + Mode = %1 - + Start to run from PV value: %1 - + End output status at the end of ramp/soak: %1 - + Output status while ramp/soak operation set to OFF: %1 - + Repeat Operation at the end: %1 - + Recomended Mode = 0 - + If you need to change it, change it now and come back later - + Use the Parameter Loader Software by Fuji if you need to - + Continue? - + Load PID Settings - + Save PID Settings - + Current sv = %1. Change now to sv = %2? - + Change svN - + Current pid = %1. Change now to pid =%2? - + Ramp Soak start-end mode - + Pattern changed to %1 - + Pattern did not changed - + Ramp/Soak was found ON! Turn it off before changing the pattern - + Ramp/Soak was found in Hold! Turn it off before changing the pattern - + Activate PID front buttons - + Remember SV memory has a finite life of ~10,000 writes. @@ -5443,157 +5443,157 @@ Proceed? - + RS ON - + RS OFF - + RS on HOLD - + PXG sv#%1 set to %2 - + PXR sv set to %1 - + SV%1 changed from %2 to %3) - + Unable to set sv%1 - + SV changed from %1 to %2 - + Unable to set sv - + Unable to set new sv - + Load Ramp/Soak Table - + Save Ramp/Soak Table - + PID turned on - + PID turned off - + input register'. Input registers (fct 4) usually - + are from 30000-39999. Most devices hold data in - + IO Command: set(n,0), set(n,1), toggle(n) to set Phidget IO digital output n - + ET value - + BT value - + Extra #1 T1 value - + Extra #1 T2 value - + Extra #2 T1 value - + Extra #2 T2 value - + Yn holds values sampled in the actual interval if refering to ET/BT or extra channels from devices listed before, otherwise Yn hold values sampled in the previous interval - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) writes values to the registers in slaves specified by the given ids - + <b>Event value</b> Value of event (1-100) to be recorded - + Phidget Temperature Sensor IR detached - + Phidget Temperature Sensor 4-input detached - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) or wcoils(slaveId,register,&lt;bool&gt;) writes values to the registers in slaves specified by the given ids - + Phidget Bridge 4-input detached - + Phidget 1018 IO detached @@ -5602,31 +5602,26 @@ Proceed? Hottop control turned off - - - Hottop control turned on - - Radio Button - + Meter - + PID - + TC4 - + Program @@ -5715,337 +5710,337 @@ Proceed? StatusBar - + Playback Aid set OFF - + Ready - + Decimal position successfully set to 1 - + Problem setting decimal position - + Problem setting thermocouple type - + setting autotune... - + Autotune successfully turned OFF - + Autotune successfully turned ON - + wait... - + PID OFF - + PID ON - + SV successfully set to %1 - + Empty SV box - + Unable to read SV - + Ramp/Soak operation cancelled - + No RX data - + RS ON - + Need to change pattern mode... - + Pattern has been changed. Wait 5 secs. - + Pattern could not be changed - + RampSoak could not be changed - + RS OFF - + RS successfully turned OFF - + setONOFFrampsoak(): Ramp Soak could not be set OFF - + getsegment(): problem reading ramp - + getsegment(): problem reading soak - + Finished reading Ramp/Soak val. - + Finished reading pid values - + %1 successfully sent to pid - + setpid(): There was a problem setting %1 - + Ramp/Soak successfully written - + Time Units successfully set to MM:SS - + Problem setting time units - + Thermocouple type successfully set - + SV%1 set to %2 - + Problem setting SV - + Cancelled svN change - + PID already using sv%1 - + setNsv(): bad response - + pid changed to %1 - + setNpid(): bad confirmation - + Cancelled pid change - + PID was already using pid %1 - + setNpid(): Unable to set pid %1 - + SV%1 successfully set to %2 - + setsv(): Unable to set SV - + pid #%1 successfully set to (%2,%3,%4) - + pid command failed. Bad data at pid%1 (8,8,8): (%2,%3,%4) - + sending commands for p%1 i%2 d%3 - + getallpid(): Unable to read pid values - + PID is using pid = %1 - + getallpid(): Unable to read current sv - + PID is using SV = %1 - + Ramp Soak could not be set OFF - + PID set to OFF - + PID set to ON - + Unable - + No data received - + Reading Ramp/Soak %1 ... - + problem reading Ramp/Soak - + Current pid = %1. Proceed with autotune command? - + Autotune cancelled - + UNABLE to set Autotune - + SV - + Ramp (MM:SS) - + Soak (MM:SS) - + Work in Progress @@ -6053,157 +6048,157 @@ Proceed? Tab - + Graph - + HUD - + Plotter - + Math - + UI - + General - + Notes - + Events - + Data - + Config - + Buttons - + Sliders - + Quantifiers - + Palettes - + Style - + ET/BT - + Extra - + Modbus - + Scale - + Color - + Extra Devices - + Symb ET/BT - + Phidgets - + LCDs - + RS - + SV - + PID - + Set RS - + Ramp/Soak - + Filter - + Espresso @@ -6211,335 +6206,340 @@ Proceed? Table - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL - + Time - + ET - + BT - + DeltaET - + DeltaBT - + CHARGE - + EVENT #%2 %3%4 - + Description - + Type - + Value - + Label - + Action - + Documentation - + Visibility - + Color - + Text Color - + EVENT #%1 %2%3 - + Device - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Color 1 - + Color 2 - + Label 1 - + Label 2 - + y1(x) - + y2(x) - + LCD 1 - + LCD 2 - + Curve 1 - + Curve 2 - + Parent - + Width - + Opaqueness - + Delete Wheel - + Edit Labels - + Update Labels - + Properties - + Radius - + Starting angle - + Projection - + Text Size - + Color Pattern - + Status - + If Alarm - + But Not - + From - + Source - + Condition - + Temp - + Beep - + SV - + Ramp HH:MM - + Soak HH:MM - + Name - + Weight + + + Nr + + Textbox @@ -6912,204 +6912,204 @@ Pungency - + <b>Label</b>= - + <b>Description </b>= - + <b>Type </b>= - + <b>Value </b>= - + <b>Documentation </b>= - + <b>Button# </b>= - + Save image using current graph size to a png format - + linear: linear interpolation cubic: 3rd order spline interpolation nearest: y value of the nearest point - + ON/OFF logs serial communication - + Automatic generated name = This text + date + time - + ON/OFF of automatic saving when pressing keyboard letter [a] - + Sets the directory to store batch profiles when using the letter [a] - + Allows to enter a description of the last event - + Add new extra Event button - + Delete the last extra Event button - + Show help - + Backup all palettes to a text file - + Restore all palettes from a text file - + Action Type - + Action String - + Aspect Ratio - + Example: 100 + 2*x - + Example: 100 + x - + Erases wheel parent hierarchy - + Sets graph hierarchy child->parent instead of parent->child - + Increase size of text in all the graph - + Decrease size of text in all the graph - + Decorative edge beween wheels - + Line thickness - + Line color - + Apply color pattern to whole graph - + Add new wheel - + Rotate graph 1 degree counter clockwise - + Rotate graph 1 degree clockwise - + Save graph to a text file.wg - + Sets Wheel graph to view mode - + open graph file.wg - + Close wheel graph editor - + Clear alarms table - + Interval diff --git a/translations/artisan_ru.ts b/translations/artisan_ru.ts index ce417e925..a6473ab98 100644 --- a/translations/artisan_ru.ts +++ b/translations/artisan_ru.ts @@ -132,587 +132,587 @@ END - + Update - + OK - + Cancel - + Color - + Plot - + Background - + Virtual Device - + Save Image - + Help - + Info - + Set - + Defaults - + Order - + Add - + Delete - + in - + out - + Search - + Path - + Save - + Load - + Del - + Align - + Up - + Down - + Left - + Right - + Reset - + Close - + Create - + Select - + Grid - + Title - + Y Label - + X Label - + Drying Phase - + Maillard Phase - + Development Phase - + Cooling Phase - + ET - + BT - + DeltaET - + DeltaBT - + Markers - + Text - + Watermarks - + C Lines - + Grey - + LED - + B/W - + Reset Parents - + Reverse Hierarchy - + + - + - - + Line Color - + < - + > - + Save File - + Save Img - + View Mode - + Open - + Set Color - + All On - + All Off - + Read Ra/So values - + RampSoak ON - + RampSoak OFF - + PID OFF - + PID ON - + Write SV - + SV Buttons ON - + SV Buttons OFF - + Read SV - + Set p - + Set i - + Set d - + Autotune ON - + Autotune OFF - + Read PID Values - + Read - + Set ET PID to 1 decimal point - + Set BT PID to 1 decimal point - + Read RS values - + Write SV1 - + Write SV2 - + Write SV3 - + Write SV4 - + Write SV5 - + Write SV6 - + Write SV7 - + ON SV buttons - + OFF SV buttons - + Read SV (7-0) - + pid 1 - + pid 2 - + pid 3 - + pid 4 - + pid 5 - + pid 6 - + pid 7 - + Set ET PID to MM:SS time units - + Write - + Insert - + Clear - + scan - + Write All - + Write RS values - + Write SV (7-0) - + Read PIDs - + Write PIDs - + Apply - + On - + Off - + calc - + unit - + << - + >> @@ -720,317 +720,317 @@ END CheckBox - + Heavy FC - + Low FC - + Light Cut - + Dark Cut - + Drops - + Oily - + Uneven - + Tipping - + Scorching - + Divots - + DeltaET - + DeltaBT - + Smooth Spikes - + Drop Spikes - + Limits - + Projection - + Show - + Beep - + Delete roast properties on RESET - + Serial Log ON/OFF - + Autosave [a] - + Lock Max - + Button - + Mini Editor - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL END - + Auto Adjusted - + Watermarks - + Background - + Text - + Events - + Playback Aid - + Time - + Bar - + ETBTa - + Evaluation - + Characteristics - + ET - + BT - + Load alarms from profile - + Auto CHARGE - + Auto DROP - + Mark TP - + Phases LCDs - + Auto DRY - + Auto FCs - + Decimal Places - + Modbus Port - + Smooth2 - + Start PID on CHARGE - + Load Ramp/Soak table from profile - + Control Button - + Ratiometric - + Align FCs - + /min - + Alarm Popups - + Lock @@ -1058,477 +1058,477 @@ END - + linear - + newton - + metrics - + thermal - + cubic - + nearest - + g - + Kg - + ml - + l - + ET - + BT - + upper right - + upper left - + lower left - + lower right - + right - + center left - + center right - + lower center - + upper center - + center - + 1 minute - + 2 minute - + 3 minute - + 4 minute - + 5 minute - + solid - + dashed - + dashed-dot - + dotted - + None - + Event #0 - + Event #%1 - + lb - + liter - + gallon - + quart - + pint - + cup - + cm^3 - + Type - + Value - + Serial Command - + Modbus Command - + DTA Command - + Call Program - + OFF - + ON - + Multiple Event - + DeltaBT - + DeltaET - + SV Commands - + Ramp Commands - + little-endian - + grey - + Dark Grey - + Slate Grey - + Light Gray - + Black - + White - + Transparent - + Flat - + Perpendicular - + Radial - + START - + CHARGE - + TP - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL - + below - + above - + Pop Up - + Event Button - + Slider - + classic - + xkcd - + Default - + Humor - + Comic - + DRY - + FCs - + FCe - + SCs - + SCe - + COOL END - + IO Command - + Hottop Heater - + Hottop Fan - + Hottop Command @@ -1594,12 +1594,12 @@ END Directory - + profiles - + other @@ -1607,17 +1607,17 @@ END Error Message - + Exception: - + Value Error: - + IO Error: @@ -1627,137 +1627,137 @@ END - + Unable to move CHARGE to a value that does not exist - + Modbus Error: - + Serial Exception: - + F80h Error - + CRC16 data corruption ERROR. TX does not match RX. Check wiring - + No RX data received - + DTAcommand(): %1 bytes received but 15 needed - + Unable to open serial port - + HH806Wtemperature(): Unable to initiate device - + HH506RAGetID: %1 bytes received but 5 needed - + HH506RAtemperature(): Unable to get id from HH506RA device - + HH506RAtemperature(): %1 bytes received but 14 needed - + CENTER302temperature(): %1 bytes received but 7 needed - + CENTER303temperature(): %1 bytes received but 8 needed - + CENTER306temperature(): %1 bytes received but 10 needed - + CENTER309temperature(): %1 bytes received but 45 needed - + Arduino could not set channels - + Arduino could not set temperature unit - + Serial Exception: invalid comm port - + Serial Exception: timeout - + Segment values could not be written into PID - + RampSoak could not be changed - + pid.readoneword(): %1 RX bytes received (7 needed) for unit ID=%2 - + Univariate: no profile data available - + Polyfit: no profile data available - + MS6514temperature(): %1 bytes received but 16 needed - + HH806AUtemperature(): %1 bytes received but 16 needed @@ -1767,7 +1767,7 @@ END - + Arduino could not set filters @@ -1828,147 +1828,147 @@ END Form Caption - + Extras - + Roast Properties - + Artisan Platform - + Settings Viewer - + Serial Log - + Error Log - + Message History - + Keyboard Autosave [a] - + AutoSave Path - + Axes - + Roast Calculator - + Events - + Roast Phases - + Cup Profile - + Profile Background - + Statistics - + Designer Config - + Manual Temperature Logger - + Serial Ports Configuration - + Device Assignment - + Colors - + Wheel Graph Editor - + Alarms - + Fuji PXR PID Control - + Fuji PXG PID Control - + Delta DTA PID Control - + Arduino Control - + Volume Calculator - + Tare Setup @@ -1976,257 +1976,257 @@ END GroupBox - + Curves - + LCDs - + HUD - + Input Filters - + Interpolate - + Univariate - + Appearance - + Resolution - + Sound - + Times - + Time Axis - + Temperature Axis - + DeltaBT/DeltaET Axis - + Legend Location - + Grid - + Rate of Change - + Temperature Conversion - + Weight Conversion - + Volume Conversion - + Event Types - + Default Buttons - + Management - + Evaluation - + Display - + Initial Settings - + Input 1 - + Input 2 - + Input 3 - + Input 4 - + PID - + Arduino TC4 - + External Program - + Symbolic Assignments - + Timer LCD - + ET LCD - + BT LCD - + DeltaET LCD - + DeltaBT LCD - + Extra Devices / PID SV LCD - + Label Properties - + Polyfit - + Look - + Network - + p-i-d - + Set Value - + Phidget IO - + Phidgets 1045 - + Phidgets 1046 RTD - + WebLCDs - + Phidgets 1048/1051 - + Sampling @@ -2412,12 +2412,12 @@ END Label - + ET - + BT @@ -2432,42 +2432,42 @@ END - + at - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP @@ -2497,7 +2497,7 @@ END - + Time @@ -2522,717 +2522,717 @@ END - + City - + City+ - + Full City - + Full City+ - + Light French - + French - + at %1 - + %1 after FCs - + %1 after FCe - + ET - BT = %1 - + ET - BT = %1%2 - + ET Target 1 - + BT Target 1 - + ET Target 2 - + BT Target 2 - + Mode - + ET p-i-d 1 - + Smooth Deltas - + Smooth Curves - + min - + max - + Y(x) - + COOL - + Title - + Date - + Beans - + Weight - + in - + out - + % - + Volume - + Density - + per - + Bean Size - + mm - + Whole Color - + Ground Color - + Moisture Greens - + % - + Ambient Conditions - + Roaster - + Operator - + Roasting Notes - + Cupping Notes - + Ambient Source - + (%1 g/l) - + Number of errors found %1 - + Max - + Min - + Rotation - + Initial Max - + Step - + Style - + Width - + Opaqueness - + Enter two times along profile - + Start (00:00) - + End (00:00) - + Fahrenheit - + Celsius - + Time syntax error. Time not valid - + Error: End time smaller than Start time - + Best approximation was made from %1 to %2 - + No profile found - + Bars - + Color - + Marker - + Thickness - + Opacity - + Size - + Max buttons per row - + Color Pattern - + palette # - + Event - + Action - + Command - + Offset - + Factor - + Drying - + Maillard - + Development - + Default - + Aspect Ratio - + ET Color - + BT Color - + DeltaET Color - + DeltaBT Color - + Text Warning - + sec - + Cooling - + Curviness - + Events Playback - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Settings for non-Modbus devices - + Slave - + Register - + Float - + Function - + Device - + Control ET - + Read BT - + Type - + RS485 Unit ID - + ET Channel - + BT Channel - + AT Channel - + ET Y(x) - + BT Y(x) - + Ratio - + Text - + Edge - + Line - + Color pattern - + dg - + Enter description - + Ramp Soak HH:MM<br>(1-4) - + Ramp Soak HH:MM<br>(5-8) - + Ramp/Soak Pattern - + WARNING - + Writing eeprom memory - + <u>Max life</u> 10,000 writes - + Infinite read life. - + After <u>writing</u> an adjustment,<br>never power down the pid<br>for the next 5 seconds <br>or the pid may never recover. - + Read operations manual - + ET Thermocouple type - + BT Thermocouple type - + NOTE: BT Thermocouple type is not stored in the Artisan settings - + Artisan uses 1 decimal point - + Ramp Soak (MM:SS)<br>(1-7) - + Ramp Soak (MM:SS)<br>(8-16) - + Pattern - + SV (7-0) - + Write - + P - + I - + D - + Artisan Fuji PXG uses MINUTES:SECONDS units in Ramp/Soaks - + SV @@ -3257,22 +3257,22 @@ END - + Start - + End - + Path Effects - + Font @@ -3302,12 +3302,12 @@ END - + Prefix - + Source @@ -3317,77 +3317,77 @@ END - + Window - + Cycle - + Lookahead - + Manual - + Ramp/Soak - + Background - + SV Buttons - + SV Slider - + Coarse - + Host - + Port - + HUD Button - + Raw - + ServerId: - + Password: @@ -3422,12 +3422,12 @@ END - + Moisture Roasted - + Density in: %1 g/l => Density out: %2 g/l @@ -3452,112 +3452,112 @@ END - + <b>%1</b> %2/sec, <b>%3</b> %4/min - + Async - + Change - + Gain - + Rate - + Wiring - + Delta Span - + Unit - + ml - + Unit Weight - + g - + Kg - + l - + in - + out - + Moisture loss: %1% Organic loss: %2% - + Filter - + Emissivity - + ON - + OFF - + %1 to reach ET %2 - + %1 to reach BT %2 @@ -3567,17 +3567,17 @@ END - + XT Color - + XT - + current palette @@ -3623,52 +3623,52 @@ END Marker - + Circle - + Square - + Pentagon - + Diamond - + Star - + Hexagon 1 - + Hexagon 2 - + + - + x - + None @@ -4280,7 +4280,7 @@ Profile missing [CHARGE] or [DROP] - + Open Wheel Graph @@ -4430,7 +4430,7 @@ Profile missing [CHARGE] or [DROP] - + No profile found @@ -4536,720 +4536,720 @@ Continue? - + Alarm Config - + Alarms are not available for device None - + Switch Language - + Language successfully changed. Restart the application. - + Import K202 CSV - + K202 file loaded successfully - + Import K204 CSV - + K204 file loaded successfully - + Import HH506RA CSV - + HH506RA file loaded successfully - + Save Graph as PNG - + %1 size(%2,%3) saved - + Save Graph as SVG - + %1 saved - + Invalid Wheel graph format - + Wheel Graph succesfully open - + Return the absolute value of x. - + Return the arc cosine (measured in radians) of x. - + Return the arc sine (measured in radians) of x. - + Return the arc tangent (measured in radians) of x. - + Return the cosine of x (measured in radians). - + Convert angle x from radians to degrees. - + Return e raised to the power of x. - + Return the logarithm of x to the given base. - + Return the base 10 logarithm of x. - + Return x**y (x to the power of y). - + Convert angle x from degrees to radians. - + Return the sine of x (measured in radians). - + Return the square root of x. - + Return the tangent of x (measured in radians). - + MATHEMATICAL FUNCTIONS - + SYMBOLIC VARIABLES - + Symbolic Functions - + Save Palettes - + Palettes saved - + Invalid palettes file format - + Palettes loaded - + Load Palettes - + Alarms loaded - + Interpolation failed: no profile available - + Sound turned ON - + Sound turned OFF - + [ET target 1 = %1] [BT target 1 = %2] [ET target 2 = %3] [BT target 2 = %4] - + Event #%1 added - + Event #%1 deleted - + No events found - + Roast properties updated but profile not saved to disk - + Autosave ON. Prefix: %1 - + Autosave OFF - + xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) - + <b>Event</b> hide or show the corresponding slider - + <b>Action</b> Perform an action on slider release - + <b>Command</b> depends on the action type ('{}' is replaced by <i>value</i>*<i>factor</i> + <i>offset</i>) - + Serial Command: ASCII serial command or binary a2b_uu(serial command) - + DTA Command: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating - + <b>Offset</b> added as offset to the slider value - + <b>Factor</b> multiplicator of the slider value - + Event custom buttons - + Event configuration saved - + Found empty event type box - + <b>Button Label</b> Enter \n to create labels with multiple lines. - + <b>Event Description</b> Description of the Event to be recorded. - + <b>Event type</b> Type of event to be recorded. - + <b>Action</b> Perform an action at the time of the event - + <b>Documentation</b> depends on the action type ('{}' is replaced by the event value): - + Call Program: A program/script path (absolute or relative) - + Multiple Event: Adds events of other button numbers separated by a comma: 1,2,3, etc. - + <b>Button Visibility</b> Hides/shows individual button - + <b>Keyboard Shorcut: </b> [b] Hides/shows Extra Button Rows - + Phases changed to %1 default: %2 - + Background profile not found - + Background does not match number of labels - + Playback Aid set ON at %1 secs - + No profile background found - + Reading background profile... - + Not enough time points for an ET curviness of %1. Set curviness to %2 - + Designer Config - + Not enough time points for an BT curviness of %1. Set curviness to %2 - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + Incorrect time format. Please recheck %1 time - + Times need to be in ascending order. Please recheck %1 time - + Designer has been reset - + Tick the Float flag in this case. - + Serial Port Settings: %1, %2, %3, %4, %5, %6 - + External program - + Device not set - + PID to control ET set to %1 %2 ; PID to read BT set to %3 %4 - + Device set to %1. Now, check Serial Port settings - + Device set to %1. Now, chose serial port - + Device set to CENTER 305, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 309. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 303. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH506RA. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH806AU. Now, chose serial port - + Device set to %1 - + Device set to %1%2 - + Device set to %1, which is equivalent to CENTER 302. Now, chose serial port - + Color of %1 set to %2 - + Save Wheel graph - + Wheel Graph saved - + Load Alarms - + Save Alarms - + <b>Status:</b> activate or deactive alarm - + <b>If Alarm:</b> alarm triggered only if the alarm with the given number was triggered before. Use 0 for no guard. - + <b>From:</b> alarm only triggered after the given event - + <b>Time:</b> if not 00:00, alarm is triggered mm:ss after the event 'From' happend - + <b>Source:</b> the temperature source that is observed - + <b>Condition:</b> alarm is triggered if source rises above or below the specified temperature - + <b>Temp:</b> the speficied temperature limit - + <b>Action:</b> if all conditions are fulfilled the alarm triggeres the corresponding action - + <b>NOTE:</b> each alarm is only triggered once - + OFF - + CONTINUOUS CONTROL - + ON - + STANDBY MODE - + The rampsoak-mode tells how to start and end the ramp/soak - + Your rampsoak mode in this pid is: - + Mode = %1 - + Start to run from PV value: %1 - + End output status at the end of ramp/soak: %1 - + Output status while ramp/soak operation set to OFF: %1 - + Repeat Operation at the end: %1 - + Recomended Mode = 0 - + If you need to change it, change it now and come back later - + Use the Parameter Loader Software by Fuji if you need to - + Continue? - + Current sv = %1. Change now to sv = %2? - + Change svN - + Current pid = %1. Change now to pid =%2? - + Ramp Soak start-end mode - + Pattern changed to %1 - + Pattern did not changed - + Ramp/Soak was found ON! Turn it off before changing the pattern - + Ramp/Soak was found in Hold! Turn it off before changing the pattern - + Activate PID front buttons - + Remember SV memory has a finite life of ~10,000 writes. @@ -5257,52 +5257,52 @@ Proceed? - + RS ON - + RS OFF - + RS on HOLD - + PXG sv#%1 set to %2 - + PXR sv set to %1 - + SV%1 changed from %2 to %3) - + Unable to set sv%1 - + SV changed from %1 to %2 - + Unable to set sv - + Unable to set new sv @@ -5312,7 +5312,7 @@ Proceed? - + Save Graph as PDF @@ -5322,22 +5322,22 @@ Proceed? - + Phidget Temperature Sensor 4-input attached - + Phidget Bridge 4-input attached - + Device set to %1. Now, chose Modbus serial port - + <b>But Not:</b> alarm triggered only if the alarm with the given number was not triggered before. Use 0 for no guard. @@ -5353,17 +5353,17 @@ Continue? - + <b>Description:</b> the text of the popup, the name of the program, the number of the event button or the new value of the slider - + Load PID Settings - + Save PID Settings @@ -5383,12 +5383,12 @@ Continue? - + current background ET - + current background BT @@ -5403,27 +5403,27 @@ Continue? - + Phidget 1018 IO attached - + Load Ramp/Soak Table - + Save Ramp/Soak Table - + PID turned on - + PID turned off @@ -5433,72 +5433,72 @@ Continue? - + Return the minimum of x and y. - + Return the maximum of x and y. - + The MODBUS device corresponds to input channels - + 1 and 2.. The MODBUS_34 extra device adds - + input channels 3 and 4. Inputs with slave - + id set to 0 are turned off. Modbus function 3 - + 'read holding register' is the standard. - + Modbus function 4 triggers the use of 'read - + 2 byte integer registers. A temperature of 145.2C - + is often sent as 1452. In that case you have to - + use the symbolic assignment 'x/10'. Few devices - + hold data as 4 byte floats in two registers. - + Yocto Thermocouple attached - + Yocto PT100 attached @@ -5508,92 +5508,92 @@ Continue? - + Phidget Temperature Sensor IR attached - + input register'. Input registers (fct 4) usually - + are from 30000-39999. Most devices hold data in - + IO Command: set(n,0), set(n,1), toggle(n) to set Phidget IO digital output n - + ET value - + BT value - + Extra #1 T1 value - + Extra #1 T2 value - + Extra #2 T1 value - + Extra #2 T2 value - + Yn holds values sampled in the actual interval if refering to ET/BT or extra channels from devices listed before, otherwise Yn hold values sampled in the previous interval - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) writes values to the registers in slaves specified by the given ids - + <b>Event value</b> Value of event (1-100) to be recorded - + Phidget Temperature Sensor IR detached - + Phidget Temperature Sensor 4-input detached - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) or wcoils(slaveId,register,&lt;bool&gt;) writes values to the registers in slaves specified by the given ids - + Phidget Bridge 4-input detached - + Phidget 1018 IO detached @@ -5602,31 +5602,26 @@ Continue? Hottop control turned off - - - Hottop control turned on - - Radio Button - + Meter - + PID - + Program - + TC4 @@ -5715,337 +5710,337 @@ Continue? StatusBar - + Playback Aid set OFF - + Ready - + Decimal position successfully set to 1 - + Problem setting decimal position - + Problem setting thermocouple type - + setting autotune... - + Autotune successfully turned OFF - + Autotune successfully turned ON - + wait... - + PID OFF - + PID ON - + SV successfully set to %1 - + Empty SV box - + Unable to read SV - + Ramp/Soak operation cancelled - + No RX data - + RS ON - + Need to change pattern mode... - + Pattern has been changed. Wait 5 secs. - + Pattern could not be changed - + RampSoak could not be changed - + RS OFF - + RS successfully turned OFF - + setONOFFrampsoak(): Ramp Soak could not be set OFF - + getsegment(): problem reading ramp - + getsegment(): problem reading soak - + Finished reading Ramp/Soak val. - + setpid(): There was a problem setting %1 - + Ramp/Soak successfully written - + Time Units successfully set to MM:SS - + Problem setting time units - + Thermocouple type successfully set - + SV%1 set to %2 - + Problem setting SV - + Cancelled svN change - + PID already using sv%1 - + setNsv(): bad response - + setNpid(): bad confirmation - + Cancelled pid change - + PID was already using pid %1 - + setNpid(): Unable to set pid %1 - + SV%1 successfully set to %2 - + setsv(): Unable to set SV - + pid #%1 successfully set to (%2,%3,%4) - + pid command failed. Bad data at pid%1 (8,8,8): (%2,%3,%4) - + getallpid(): Unable to read pid values - + PID is using pid = %1 - + getallpid(): Unable to read current sv - + PID is using SV = %1 - + Ramp Soak could not be set OFF - + PID set to OFF - + PID set to ON - + Unable - + No data received - + Reading Ramp/Soak %1 ... - + problem reading Ramp/Soak - + Current pid = %1. Proceed with autotune command? - + Autotune cancelled - + UNABLE to set Autotune - + SV - + Ramp (MM:SS) - + Soak (MM:SS) - + Work in Progress - + sending commands for p%1 i%2 d%3 - + %1 successfully sent to pid - + pid changed to %1 - + Finished reading pid values @@ -6053,157 +6048,157 @@ Continue? Tab - + HUD - + Plotter - + Math - + UI - + General - + Notes - + Events - + Data - + Config - + Buttons - + Sliders - + Palettes - + Style - + ET/BT - + Extra - + Modbus - + Scale - + Extra Devices - + Symb ET/BT - + Graph - + LCDs - + RS - + SV - + PID - + Set RS - + Color - + Quantifiers - + Ramp/Soak - + Phidgets - + Filter - + Espresso @@ -6211,335 +6206,340 @@ Continue? Table - + ET - + BT - + Time - + Description - + Type - + Value - + Label - + Action - + Documentation - + Visibility - + Color - + Text Color - + Device - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Color 1 - + Color 2 - + Label 1 - + Label 2 - + y1(x) - + y2(x) - + LCD 1 - + LCD 2 - + Curve 1 - + Curve 2 - + Parent - + Width - + Opaqueness - + Delete Wheel - + Edit Labels - + Update Labels - + Properties - + Radius - + Starting angle - + Projection - + Text Size - + Color Pattern - + Status - + If Alarm - + From - + Source - + Condition - + Temp - + SV - + Ramp HH:MM - + Soak HH:MM - + DRY END - + FC START - + FC END - + SC START - + SC END - + COOL - + EVENT #%2 %3%4 - + DROP - + CHARGE - + But Not - + DeltaET - + DeltaBT - + EVENT #%1 %2%3 - + Beep - + Name - + Weight + + + Nr + + Textbox @@ -6912,204 +6912,204 @@ Pungency - + <b>Label</b>= - + <b>Description </b>= - + <b>Type </b>= - + <b>Value </b>= - + <b>Documentation </b>= - + <b>Button# </b>= - + Save image using current graph size to a png format - + linear: linear interpolation cubic: 3rd order spline interpolation nearest: y value of the nearest point - + ON/OFF logs serial communication - + Automatic generated name = This text + date + time - + ON/OFF of automatic saving when pressing keyboard letter [a] - + Sets the directory to store batch profiles when using the letter [a] - + Allows to enter a description of the last event - + Add new extra Event button - + Delete the last extra Event button - + Show help - + Backup all palettes to a text file - + Action Type - + Action String - + Aspect Ratio - + Example: 100 + 2*x - + Example: 100 + x - + Erases wheel parent hierarchy - + Sets graph hierarchy child->parent instead of parent->child - + Increase size of text in all the graph - + Decrease size of text in all the graph - + Decorative edge beween wheels - + Line thickness - + Line color - + Apply color pattern to whole graph - + Add new wheel - + Rotate graph 1 degree counter clockwise - + Rotate graph 1 degree clockwise - + Save graph to a text file.wg - + Sets Wheel graph to view mode - + open graph file.wg - + Close wheel graph editor - + Restore all palettes from a text file - + Clear alarms table - + Interval diff --git a/translations/artisan_sv.ts b/translations/artisan_sv.ts index 1c408123a..20e57a775 100755 --- a/translations/artisan_sv.ts +++ b/translations/artisan_sv.ts @@ -21,462 +21,462 @@ Button - + Help Hjälp - + Update - + OK - + Cancel - + Plot - + Background - + Virtual Device - + Save Image - + Info - + Set - + Defaults - + Order - + Add - + Delete - + in - + out - + Search - + Path - + Del - + Load - + Align - + Up - + Down - + Left - + Right - + Reset - + Close - + Create - + Select - + Grid - + Title - + Y Label - + X Label - + ET - + BT - + DeltaET - + DeltaBT - + Markers - + Text - + Watermarks - + C Lines - + Grey - + LED - + B/W - + Reset Parents - + Reverse Hierarchy - + + - + - - + Line Color - + < - + > - + Save File - + Save Img - + View Mode - + Open - + Set Color - + All On - + All Off - + Read Ra/So values - + RampSoak ON - + RampSoak OFF - + PID OFF - + PID ON - + Write SV - + Set p - + Set i - + Set d - + Autotune ON - + Autotune OFF - + Read - + Set ET PID to 1 decimal point - + Set BT PID to 1 decimal point - + Read RS values - + Write SV1 - + Write SV2 - + Write SV3 - + Write SV4 - + Write SV5 - + Write SV6 - + Write SV7 - + ON SV buttons - + OFF SV buttons - + Read SV (7-0) - + pid 1 - + pid 2 - + pid 3 - + pid 4 - + pid 5 - + pid 6 - + pid 7 - + Set ET PID to MM:SS time units - + Save Spara @@ -592,127 +592,127 @@ END - + SV Buttons ON - + SV Buttons OFF - + Read SV - + Read PID Values - + Write - + Drying Phase - + Maillard Phase - + Development Phase - + Cooling Phase - + Color - + Insert - + Clear - + scan - + Write All - + Write RS values - + Write SV (7-0) - + Read PIDs - + Write PIDs - + Apply - + On - + Off - + calc - + unit - + << - + >> @@ -720,317 +720,317 @@ END CheckBox - + DeltaET - + DeltaBT - + Projection - + Show - + Beep - + Delete roast properties on RESET - + Serial Log ON/OFF - + Autosave [a] - + Button - + Mini Editor - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL END - + Auto Adjusted - + Background - + Text - + Events - + Time - + Bar - + ETBTa - + Evaluation - + Characteristics - + ET - + BT - + Playback Aid - + Heavy FC - + Low FC - + Light Cut - + Dark Cut - + Drops - + Oily - + Uneven - + Tipping - + Scorching - + Divots - + Drop Spikes - + Smooth Spikes - + Limits - + Watermarks - + Lock Max - + Load alarms from profile - + Auto CHARGE - + Auto DROP - + Mark TP - + Phases LCDs - + Auto DRY - + Auto FCs - + Decimal Places - + Modbus Port - + Smooth2 - + Start PID on CHARGE - + Load Ramp/Soak table from profile - + Control Button - + Ratiometric - + Align FCs - + /min - + Alarm Popups - + Lock @@ -1038,7 +1038,7 @@ END ComboBox - + None @@ -1058,392 +1058,392 @@ END - + linear - + newton - + metrics - + thermal - + cubic - + nearest - + g - + Kg - + ml - + l - + upper right - + upper left - + lower left - + lower right - + right - + center left - + center right - + lower center - + upper center - + center - + 1 minute - + 2 minute - + 3 minute - + 4 minute - + 5 minute - + solid - + dashed - + dashed-dot - + dotted - + Event #0 - + Event #%1 - + lb - + liter - + gallon - + quart - + pint - + cup - + cm^3 - + Type - + Value - + Serial Command - + Modbus Command - + DTA Command - + Call Program - + OFF - + ON - + Multiple Event - + grey - + Dark Grey - + Slate Grey - + Light Gray - + Black - + White - + Transparent - + Flat - + Perpendicular - + Radial - + DeltaET - + DeltaBT - + ET - + BT - + START - + CHARGE - + TP - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL - + Event Button - + Slider - + below - + above - + Pop Up - + SV Commands - + Ramp Commands @@ -1453,82 +1453,82 @@ END - + little-endian - + classic - + xkcd - + Default - + Humor - + Comic - + DRY - + FCs - + FCe - + SCs - + SCe - + COOL END - + IO Command - + Hottop Heater - + Hottop Fan - + Hottop Command @@ -1594,12 +1594,12 @@ END Directory - + profiles - + other @@ -1607,42 +1607,42 @@ END Error Message - + Unable to move CHARGE to a value that does not exist - + HH806Wtemperature(): Unable to initiate device - + HH506RAGetID: %1 bytes received but 5 needed - + HH506RAtemperature(): Unable to get id from HH506RA device - + HH506RAtemperature(): %1 bytes received but 14 needed - + Segment values could not be written into PID - + RampSoak could not be changed - + pid.readoneword(): %1 RX bytes received (7 needed) for unit ID=%2 @@ -1652,112 +1652,112 @@ END - + Value Error: - + Exception: - + IO Error: - + Modbus Error: - + Serial Exception: - + F80h Error - + CRC16 data corruption ERROR. TX does not match RX. Check wiring - + No RX data received - + Unable to open serial port - + CENTER303temperature(): %1 bytes received but 8 needed - + CENTER306temperature(): %1 bytes received but 10 needed - + DTAcommand(): %1 bytes received but 15 needed - + CENTER309temperature(): %1 bytes received but 45 needed - + Arduino could not set channels - + Arduino could not set temperature unit - + CENTER302temperature(): %1 bytes received but 7 needed - + Serial Exception: invalid comm port - + Serial Exception: timeout - + Univariate: no profile data available - + Polyfit: no profile data available - + MS6514temperature(): %1 bytes received but 16 needed - + HH806AUtemperature(): %1 bytes received but 16 needed @@ -1767,7 +1767,7 @@ END - + Arduino could not set filters @@ -1828,147 +1828,147 @@ END Form Caption - + Extras - + Roast Properties - + Artisan Platform - + Serial Log - + Error Log - + Message History - + Keyboard Autosave [a] - + AutoSave Path - + Axes - + Roast Calculator - + Events - + Roast Phases - + Cup Profile - + Profile Background - + Statistics - + Designer Config - + Manual Temperature Logger - + Serial Ports Configuration - + Device Assignment - + Colors - + Wheel Graph Editor - + Alarms - + Fuji PXG PID Control - + Delta DTA PID Control - + Settings Viewer - + Fuji PXR PID Control - + Arduino Control - + Volume Calculator - + Tare Setup @@ -1976,257 +1976,257 @@ END GroupBox - + Curves - + LCDs - + HUD - + Interpolate - + Univariate - + Appearance - + Resolution - + Times - + Time Axis - + Temperature Axis - + DeltaBT/DeltaET Axis - + Legend Location - + Grid - + Rate of Change - + Temperature Conversion - + Weight Conversion - + Volume Conversion - + Event Types - + Default Buttons - + Management - + Evaluation - + Display - + Initial Settings - + Input 1 - + Input 2 - + Input 3 - + Input 4 - + PID - + Arduino TC4 - + External Program - + Symbolic Assignments - + Timer LCD - + ET LCD - + BT LCD - + Label Properties - + Sound - + DeltaET LCD - + DeltaBT LCD - + Input Filters - + Extra Devices / PID SV LCD - + Polyfit - + Look - + Network - + p-i-d - + Set Value - + Phidget IO - + Phidgets 1045 - + Phidgets 1046 RTD - + WebLCDs - + Phidgets 1048/1051 - + Sampling @@ -2412,12 +2412,12 @@ END Label - + ET - + BT @@ -2452,512 +2452,512 @@ END - + City - + City+ - + Full City - + Full City+ - + Light French - + French - + Mode - + Y(x) - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + COOL - + Title - + Date - + Beans - + Weight - + in - + out - + % - + Volume - + Density - + per - + Bean Size - + mm - + % - + at - + Roaster - + Operator - + Roasting Notes - + Cupping Notes - + (%1 g/l) - + Number of errors found %1 - + Max - + Min - + Rotation - + Step - + Style - + Width - + Opaqueness - + Enter two times along profile - + Start (00:00) - + End (00:00) - + Fahrenheit - + Celsius - + Time syntax error. Time not valid - + Error: End time smaller than Start time - + Best approximation was made from %1 to %2 - + No profile found - + Max buttons per row - + Color Pattern - + palette # - + Event - + Action - + Command - + Offset - + Factor - + Default - + Aspect Ratio - + BT Color - + ET Color - + Marker - + Time - + Curviness - + Events Playback - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Slave - + Register - + Device - + Control ET - + Read BT - + Type - + RS485 Unit ID - + ET Channel - + BT Channel - + AT Channel - + ET Y(x) - + BT Y(x) - + Ratio - + Text - + Edge - + Line - + Color pattern - + Ramp Soak HH:MM<br>(1-4) - + Ramp Soak HH:MM<br>(5-8) - + Ramp/Soak Pattern - + WARNING - + Writing eeprom memory - + <u>Max life</u> 10,000 writes - + Infinite read life. - + After <u>writing</u> an adjustment,<br>never power down the pid<br>for the next 5 seconds <br>or the pid may never recover. - + Read operations manual - + ET Thermocouple type - + BT Thermocouple type @@ -2987,252 +2987,252 @@ END - + at %1 - + %1 after FCs - + %1 after FCe - + ET - BT = %1 - + ET - BT = %1%2 - + ET Target 1 - + BT Target 1 - + ET Target 2 - + BT Target 2 - + ET p-i-d 1 - + Smooth Deltas - + Smooth Curves - + min - + max - + Whole Color - + Ground Color - + Moisture Greens - + Ambient Conditions - + Ambient Source - + Initial Max - + Bars - + Color - + Thickness - + Opacity - + Size - + Drying - + Maillard - + Development - + DeltaET Color - + DeltaBT Color - + Text Warning - + sec - + Cooling - + Settings for non-Modbus devices - + Float - + Function - + dg - + Enter description - + NOTE: BT Thermocouple type is not stored in the Artisan settings - + Artisan uses 1 decimal point - + Ramp Soak (MM:SS)<br>(1-7) - + Ramp Soak (MM:SS)<br>(8-16) - + Pattern - + SV (7-0) - + Write - + P - + I - + D - + Artisan Fuji PXG uses MINUTES:SECONDS units in Ramp/Soaks - + SV @@ -3257,22 +3257,22 @@ END - + Start - + End - + Path Effects - + Font @@ -3302,12 +3302,12 @@ END - + Prefix - + Source @@ -3317,77 +3317,77 @@ END - + Window - + Cycle - + Lookahead - + Manual - + Ramp/Soak - + Background - + SV Buttons - + SV Slider - + Coarse - + Host - + Port - + HUD Button - + Raw - + ServerId: - + Password: @@ -3422,12 +3422,12 @@ END - + Moisture Roasted - + Density in: %1 g/l => Density out: %2 g/l @@ -3452,112 +3452,112 @@ END - + <b>%1</b> %2/sec, <b>%3</b> %4/min - + Async - + Change - + Gain - + Rate - + Wiring - + Delta Span - + Unit - + ml - + Unit Weight - + g - + Kg - + l - + in - + out - + Moisture loss: %1% Organic loss: %2% - + Filter - + Emissivity - + ON - + OFF - + %1 to reach ET %2 - + %1 to reach BT %2 @@ -3567,17 +3567,17 @@ END - + XT Color - + XT - + current palette @@ -3623,52 +3623,52 @@ END Marker - + Circle - + Square - + Pentagon - + Diamond - + Star - + Hexagon 1 - + Hexagon 2 - + + - + x - + None @@ -4280,7 +4280,7 @@ Profile missing [CHARGE] or [DROP] - + Open Wheel Graph @@ -4430,7 +4430,7 @@ Profile missing [CHARGE] or [DROP] - + No profile found @@ -4536,720 +4536,720 @@ Continue? - + Alarm Config - + Alarms are not available for device None - + Switch Language - + Language successfully changed. Restart the application. - + Import K202 CSV - + K202 file loaded successfully - + Import K204 CSV - + K204 file loaded successfully - + Import HH506RA CSV - + HH506RA file loaded successfully - + Save Graph as PNG - + %1 size(%2,%3) saved - + Save Graph as SVG - + %1 saved - + Invalid Wheel graph format - + Wheel Graph succesfully open - + Return the absolute value of x. - + Return the arc cosine (measured in radians) of x. - + Return the arc sine (measured in radians) of x. - + Return the arc tangent (measured in radians) of x. - + Return the cosine of x (measured in radians). - + Convert angle x from radians to degrees. - + Return e raised to the power of x. - + Return the logarithm of x to the given base. - + Return the base 10 logarithm of x. - + Return x**y (x to the power of y). - + Convert angle x from degrees to radians. - + Return the sine of x (measured in radians). - + Return the square root of x. - + Return the tangent of x (measured in radians). - + MATHEMATICAL FUNCTIONS - + SYMBOLIC VARIABLES - + Symbolic Functions - + Save Palettes - + Palettes saved - + Invalid palettes file format - + Palettes loaded - + Load Palettes - + Alarms loaded - + Interpolation failed: no profile available - + Sound turned ON - + Sound turned OFF - + [ET target 1 = %1] [BT target 1 = %2] [ET target 2 = %3] [BT target 2 = %4] - + Event #%1 added - + Event #%1 deleted - + No events found - + Roast properties updated but profile not saved to disk - + Autosave ON. Prefix: %1 - + Autosave OFF - + xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) - + <b>Event</b> hide or show the corresponding slider - + <b>Action</b> Perform an action on slider release - + <b>Command</b> depends on the action type ('{}' is replaced by <i>value</i>*<i>factor</i> + <i>offset</i>) - + Serial Command: ASCII serial command or binary a2b_uu(serial command) - + DTA Command: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating - + <b>Offset</b> added as offset to the slider value - + <b>Factor</b> multiplicator of the slider value - + Event custom buttons - + Event configuration saved - + Found empty event type box - + <b>Button Label</b> Enter \n to create labels with multiple lines. - + <b>Event Description</b> Description of the Event to be recorded. - + <b>Event type</b> Type of event to be recorded. - + <b>Action</b> Perform an action at the time of the event - + <b>Documentation</b> depends on the action type ('{}' is replaced by the event value): - + Call Program: A program/script path (absolute or relative) - + Multiple Event: Adds events of other button numbers separated by a comma: 1,2,3, etc. - + <b>Button Visibility</b> Hides/shows individual button - + <b>Keyboard Shorcut: </b> [b] Hides/shows Extra Button Rows - + Phases changed to %1 default: %2 - + Background profile not found - + Background does not match number of labels - + Playback Aid set ON at %1 secs - + No profile background found - + Reading background profile... - + Not enough time points for an ET curviness of %1. Set curviness to %2 - + Designer Config - + Not enough time points for an BT curviness of %1. Set curviness to %2 - + CHARGE - + DRY END - + FC START - + FC END - + SC START - + SC END - + DROP - + Incorrect time format. Please recheck %1 time - + Times need to be in ascending order. Please recheck %1 time - + Designer has been reset - + Tick the Float flag in this case. - + Serial Port Settings: %1, %2, %3, %4, %5, %6 - + External program - + Device not set - + PID to control ET set to %1 %2 ; PID to read BT set to %3 %4 - + Device set to %1. Now, check Serial Port settings - + Device set to %1. Now, chose serial port - + Device set to CENTER 305, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 309. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 303. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH506RA. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH806AU. Now, chose serial port - + Device set to %1 - + Device set to %1%2 - + Device set to %1, which is equivalent to CENTER 302. Now, chose serial port - + Color of %1 set to %2 - + Save Wheel graph - + Wheel Graph saved - + Load Alarms - + Save Alarms - + <b>Status:</b> activate or deactive alarm - + <b>If Alarm:</b> alarm triggered only if the alarm with the given number was triggered before. Use 0 for no guard. - + <b>From:</b> alarm only triggered after the given event - + <b>Time:</b> if not 00:00, alarm is triggered mm:ss after the event 'From' happend - + <b>Source:</b> the temperature source that is observed - + <b>Condition:</b> alarm is triggered if source rises above or below the specified temperature - + <b>Temp:</b> the speficied temperature limit - + <b>Action:</b> if all conditions are fulfilled the alarm triggeres the corresponding action - + <b>NOTE:</b> each alarm is only triggered once - + OFF - + CONTINUOUS CONTROL - + ON - + STANDBY MODE - + The rampsoak-mode tells how to start and end the ramp/soak - + Your rampsoak mode in this pid is: - + Mode = %1 - + Start to run from PV value: %1 - + End output status at the end of ramp/soak: %1 - + Output status while ramp/soak operation set to OFF: %1 - + Repeat Operation at the end: %1 - + Recomended Mode = 0 - + If you need to change it, change it now and come back later - + Use the Parameter Loader Software by Fuji if you need to - + Continue? - + Current sv = %1. Change now to sv = %2? - + Change svN - + Current pid = %1. Change now to pid =%2? - + Ramp Soak start-end mode - + Pattern changed to %1 - + Pattern did not changed - + Ramp/Soak was found ON! Turn it off before changing the pattern - + Ramp/Soak was found in Hold! Turn it off before changing the pattern - + Activate PID front buttons - + Remember SV memory has a finite life of ~10,000 writes. @@ -5257,52 +5257,52 @@ Proceed? - + RS ON - + RS OFF - + RS on HOLD - + PXG sv#%1 set to %2 - + PXR sv set to %1 - + SV%1 changed from %2 to %3) - + Unable to set sv%1 - + SV changed from %1 to %2 - + Unable to set sv - + Unable to set new sv @@ -5312,7 +5312,7 @@ Proceed? - + Save Graph as PDF @@ -5322,22 +5322,22 @@ Proceed? - + Phidget Temperature Sensor 4-input attached - + Phidget Bridge 4-input attached - + Device set to %1. Now, chose Modbus serial port - + <b>But Not:</b> alarm triggered only if the alarm with the given number was not triggered before. Use 0 for no guard. @@ -5353,17 +5353,17 @@ Continue? - + <b>Description:</b> the text of the popup, the name of the program, the number of the event button or the new value of the slider - + Load PID Settings - + Save PID Settings @@ -5383,12 +5383,12 @@ Continue? - + current background ET - + current background BT @@ -5403,27 +5403,27 @@ Continue? - + Phidget 1018 IO attached - + Load Ramp/Soak Table - + Save Ramp/Soak Table - + PID turned on - + PID turned off @@ -5433,72 +5433,72 @@ Continue? - + Return the minimum of x and y. - + Return the maximum of x and y. - + The MODBUS device corresponds to input channels - + 1 and 2.. The MODBUS_34 extra device adds - + input channels 3 and 4. Inputs with slave - + id set to 0 are turned off. Modbus function 3 - + 'read holding register' is the standard. - + Modbus function 4 triggers the use of 'read - + 2 byte integer registers. A temperature of 145.2C - + is often sent as 1452. In that case you have to - + use the symbolic assignment 'x/10'. Few devices - + hold data as 4 byte floats in two registers. - + Yocto Thermocouple attached - + Yocto PT100 attached @@ -5508,92 +5508,92 @@ Continue? - + Phidget Temperature Sensor IR attached - + input register'. Input registers (fct 4) usually - + are from 30000-39999. Most devices hold data in - + IO Command: set(n,0), set(n,1), toggle(n) to set Phidget IO digital output n - + ET value - + BT value - + Extra #1 T1 value - + Extra #1 T2 value - + Extra #2 T1 value - + Extra #2 T2 value - + Yn holds values sampled in the actual interval if refering to ET/BT or extra channels from devices listed before, otherwise Yn hold values sampled in the previous interval - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) writes values to the registers in slaves specified by the given ids - + <b>Event value</b> Value of event (1-100) to be recorded - + Phidget Temperature Sensor IR detached - + Phidget Temperature Sensor 4-input detached - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) or wcoils(slaveId,register,&lt;bool&gt;) writes values to the registers in slaves specified by the given ids - + Phidget Bridge 4-input detached - + Phidget 1018 IO detached @@ -5602,31 +5602,26 @@ Continue? Hottop control turned off - - - Hottop control turned on - - Radio Button - + Meter - + PID - + Program - + TC4 @@ -5715,337 +5710,337 @@ Continue? StatusBar - + Playback Aid set OFF - + Ready - + Decimal position successfully set to 1 - + Problem setting decimal position - + Problem setting thermocouple type - + setting autotune... - + Autotune successfully turned OFF - + Autotune successfully turned ON - + wait... - + PID OFF - + PID ON - + SV successfully set to %1 - + Empty SV box - + Unable to read SV - + Ramp/Soak operation cancelled - + No RX data - + RS ON - + Need to change pattern mode... - + Pattern has been changed. Wait 5 secs. - + Pattern could not be changed - + RampSoak could not be changed - + RS OFF - + RS successfully turned OFF - + setONOFFrampsoak(): Ramp Soak could not be set OFF - + getsegment(): problem reading ramp - + getsegment(): problem reading soak - + Finished reading Ramp/Soak val. - + %1 successfully sent to pid - + setpid(): There was a problem setting %1 - + Ramp/Soak successfully written - + Time Units successfully set to MM:SS - + Problem setting time units - + Thermocouple type successfully set - + SV%1 set to %2 - + Problem setting SV - + Cancelled svN change - + PID already using sv%1 - + setNsv(): bad response - + setNpid(): bad confirmation - + Cancelled pid change - + PID was already using pid %1 - + setNpid(): Unable to set pid %1 - + SV%1 successfully set to %2 - + setsv(): Unable to set SV - + pid #%1 successfully set to (%2,%3,%4) - + pid command failed. Bad data at pid%1 (8,8,8): (%2,%3,%4) - + sending commands for p%1 i%2 d%3 - + getallpid(): Unable to read pid values - + PID is using pid = %1 - + getallpid(): Unable to read current sv - + PID is using SV = %1 - + Ramp Soak could not be set OFF - + PID set to OFF - + PID set to ON - + Unable - + No data received - + Reading Ramp/Soak %1 ... - + problem reading Ramp/Soak - + Current pid = %1. Proceed with autotune command? - + Autotune cancelled - + UNABLE to set Autotune - + SV - + Ramp (MM:SS) - + Soak (MM:SS) - + Work in Progress - + pid changed to %1 - + Finished reading pid values @@ -6053,157 +6048,157 @@ Continue? Tab - + HUD - + Plotter - + Math - + UI - + General - + Notes - + Events - + Data - + Config - + Buttons - + Sliders - + Palettes - + Style - + ET/BT - + Extra - + Modbus - + Scale - + Extra Devices - + Symb ET/BT - + Graph - + LCDs - + RS - + SV - + PID - + Set RS - + Color - + Quantifiers - + Ramp/Soak - + Phidgets - + Filter - + Espresso @@ -6211,335 +6206,340 @@ Continue? Table - + ET - + BT - + Time - + Description - + Type - + Value - + Label - + Action - + Documentation - + Visibility - + Color - + Text Color - + Device - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Color 1 - + Color 2 - + Label 1 - + Label 2 - + y1(x) - + y2(x) - + LCD 1 - + LCD 2 - + Curve 1 - + Curve 2 - + Parent - + Width - + Opaqueness - + Delete Wheel - + Edit Labels - + Update Labels - + Properties - + Radius - + Starting angle - + Projection - + Text Size - + Color Pattern - + Status - + If Alarm - + From - + Source - + Condition - + Temp - + SV - + Ramp HH:MM - + Soak HH:MM - + DRY END - + FC START - + FC END - + SC START - + SC END - + COOL - + EVENT #%2 %3%4 - + DROP - + CHARGE - + But Not - + DeltaET - + DeltaBT - + EVENT #%1 %2%3 - + Beep - + Name - + Weight + + + Nr + + Textbox @@ -6912,204 +6912,204 @@ Pungency - + <b>Label</b>= - + <b>Description </b>= - + <b>Type </b>= - + <b>Value </b>= - + <b>Documentation </b>= - + <b>Button# </b>= - + Save image using current graph size to a png format - + linear: linear interpolation cubic: 3rd order spline interpolation nearest: y value of the nearest point - + ON/OFF logs serial communication - + Automatic generated name = This text + date + time - + ON/OFF of automatic saving when pressing keyboard letter [a] - + Sets the directory to store batch profiles when using the letter [a] - + Allows to enter a description of the last event - + Add new extra Event button - + Delete the last extra Event button - + Show help - + Backup all palettes to a text file - + Action Type - + Action String - + Aspect Ratio - + Example: 100 + 2*x - + Example: 100 + x - + Erases wheel parent hierarchy - + Sets graph hierarchy child->parent instead of parent->child - + Increase size of text in all the graph - + Decrease size of text in all the graph - + Decorative edge beween wheels - + Line thickness - + Line color - + Apply color pattern to whole graph - + Add new wheel - + Rotate graph 1 degree counter clockwise - + Rotate graph 1 degree clockwise - + Save graph to a text file.wg - + Sets Wheel graph to view mode - + open graph file.wg - + Close wheel graph editor - + Restore all palettes from a text file - + Clear alarms table - + Interval diff --git a/translations/artisan_tr.ts b/translations/artisan_tr.ts index a9ac88241..d9f16d655 100644 --- a/translations/artisan_tr.ts +++ b/translations/artisan_tr.ts @@ -137,7 +137,7 @@ END Serinletmek zamani son - + Update güncelleştirme @@ -147,92 +147,92 @@ END PID yardim - + OK ok - + Cancel iptal - + Color boya - + Plot çizim - + Background Arka plan - + Virtual Device Sanal alet - + Save Image resimi kaydetmek - + Help yardim - + Info bilgi - + Set Yerleştir - + Defaults ana ayarlar - + Order sipariş - + Add eklemek - + Delete silmeki - + in giriş - + out çıkış - + Search arama yapmak - + Path yol @@ -247,57 +247,57 @@ END kurtarmak - + Save kaydetmek - + Load yüklemek - + Del silmeki - + Align ayarlamak - + Up yukarı - + Down aşağı - + Left sola - + Right sağa - + Reset geriye almak - + Close bitirmek - + Create dizayn etmek @@ -307,352 +307,352 @@ END Koneksiyon arama yapmak - + Select seçmek - + Grid kafes - + Title ad - + Y Label Y etiket - + X Label x etiket - + Drying Phase kurutmak devre - + Maillard Phase maillard devre - + Development Phase gelişme devre - + Cooling Phase serinletmek devre - + ET ET - + BT BT - + DeltaET fark ET - + DeltaBT fark BT - + Markers markör - + Text Metin - + Watermarks Suyolu - + C Lines C çizgi - + Grey gri - + LED LED - + B/W siyah-beyaz - + Reset Parents ana ayarlarini geriye al - + Reverse Hierarchy ters hiyerarşi - + + + - + - - - + Line Color Çizgi renkleri - + < < - + > > - + Save File Veriler kaydetmek - + Save Img resim kaydetmek - + View Mode görüş biçim - + Open açmak - + Set Color renkleri kararlaştırmak - + All On tüm açmak - + All Off tüm kapatmak - + Read Ra/So values Ra/ S0 ayarlarini aç - + RampSoak ON ıslatmak rampasini aç - + RampSoak OFF ıslatmak rampasini kapat - + PID OFF PID aç - + PID ON PID kapat - + Write SV SV kaydet - + SV Buttons ON SV düğmelerini aç - + SV Buttons OFF SV düğmelerini kapat - + Read SV SV aç - + Set p p yerleştirmek - + Set i i yerleştirmek - + Set d d yerleştirmek - + Autotune ON otomatik ayarlar açmak - + Autotune OFF otomatik ayarlar kapatmak - + Read PID Values PID değerini aç - + Read - + Set ET PID to 1 decimal point ET PID 1 decimal nokta değiştir - + Set BT PID to 1 decimal point BT PID 1 decimal nokta değiştir - + Read RS values RS değerini aç - + Write SV1 SV1 yazmak - + Write SV2 SV2 yazmak - + Write SV3 SV3 yazmak - + Write SV4 SV4 yazmak - + Write SV5 SV5 yazmak - + Write SV6 SV6 yazmak - + Write SV7 SV7 yazmak - + ON SV buttons SV açmak düğme - + OFF SV buttons SV kapatmak düğme - + Read SV (7-0) SV (7-0) okumak - + pid 1 pid 1 - + pid 2 pid 2 - + pid 3 pid 3 - + pid 4 pid 4 - + pid 5 pid 5 - + pid 6 pid 6 - + pid 7 pid 7 @@ -662,87 +662,87 @@ END tüm okumaki - + Set ET PID to MM:SS time units ET PID DD:SS birime değiştir - + Write Yazma - + Insert - + Clear - + scan - + Write All - + Write RS values - + Write SV (7-0) - + Read PIDs - + Write PIDs - + Apply - + On - + Off - + calc - + unit - + << - + >> @@ -750,122 +750,122 @@ END CheckBox - + Heavy FC Güçlü FC - + Low FC Az FC - + Light Cut Açık kesme - + Dark Cut Koyu kesme - + Drops Damla damla - + Oily Yağımsı - + Uneven Ayrımlı - + Tipping Dökmek - + Scorching Yakmak - + Divots Çimen tabakası - + DeltaET Delta ET - + DeltaBT Delta BT - + Smooth Spikes Düz iğneler - + Drop Spikes Damla iğneler - + Limits Limit - + Projection Projeksiyon - + Show Göster - + Beep Korna - + Delete roast properties on RESET Kavurma tercihleri geriye almakda sil - + Serial Log ON/OFF Serial Log açmak/kapatmak - + Autosave [a] Otomatik kaydetmek - + Lock Max Max kilitle - + Button Düğme - + Mini Editor Mini editör @@ -875,82 +875,82 @@ END Otomatik şarj/ damla - + CHARGE Şarj etmek - + DRY END Kurutmak zamani son - + FC START FC start - + FC END FC bitiş - + SC START SC start - + SC END SC bitiş - + DROP Damla - + COOL END Serinletmek son - + Auto Adjusted Otomatik ayarlama - + Watermarks Suyolu - + Background Arka plan - + Text Metin - + Events Olaylar - + Playback Aid Resital yardım - + Time Süre - + Bar Bar @@ -960,117 +960,117 @@ END g/a - + ETBTa ETBTa - + Evaluation Değerleme - + Characteristics Nitelikler - + ET ET - + BT BT - + Load alarms from profile - + Auto CHARGE - + Auto DROP - + Mark TP - + Phases LCDs - + Auto DRY - + Auto FCs - + Decimal Places - + Modbus Port - + Smooth2 - + Start PID on CHARGE - + Load Ramp/Soak table from profile - + Control Button - + Ratiometric - + Align FCs - + /min - + Alarm Popups - + Lock @@ -1098,112 +1098,112 @@ END Vantilatör - + linear düz - + newton newton - + metrics metrik - + thermal termik - + cubic cubic - + nearest en yakın - + g g - + Kg kg - + ml ml - + l I - + ET ET - + BT BT - + upper right bir yukarıda sağda - + upper left bir yukarıda solda - + lower left bir aşağıda solda - + lower right bir aşağıda sağda - + right sağ - + center left orta sol - + center right orta sağ - + lower center bir aşağıda ortaya - + upper center bir yukarıda ortaya - + center ortaya @@ -1213,367 +1213,367 @@ END 30 saniye - + 1 minute 1 dakika - + 2 minute 2 dakika - + 3 minute 3 dakika - + 4 minute 4 dakika - + 5 minute 5 dakika - + solid sert - + dashed çizgili - + dashed-dot çizgili nokta - + dotted noktalı - + None Hiç - + Event #0 Olay #0 - + Event #%1 Olay #%1 - + lb lb - + liter litre - + gallon gallon - + quart dörtte bir - + pint pint - + cup fincan - + cm^3 cm^3 - + Type Cins - + Value Değerini - + Serial Command Serial komut - + Modbus Command Modbus komut - + DTA Command DTA komut - + Call Program Programı çağır - + OFF Kapat - + ON - + Multiple Event Birçok olaylar - + DeltaBT Delta BT - + DeltaET Delta ET - + SV Commands SV komut - + Ramp Commands Rampa komutlar - + little-endian küçük-endian - + grey gri - + Dark Grey Kuvetli gri - + Slate Grey Şist gri - + Light Gray Hafif gri - + Black Siyah - + White Beyaz - + Transparent Saydam - + Flat Zassı - + Perpendicular Dikey - + Radial Işinli - + START Start - + CHARGE Şarj - + TP TP - + DRY END Kurutma son - + FC START FC start - + FC END FC son - + SC START SC start - + SC END SC son - + DROP Damla - + COOL Soğut - + below altında - + above üzerinde - + Pop Up Pop Up - + Event Button Olay düğme - + Slider Slider - + classic - + xkcd - + Default Ilk ayarlar - + Humor - + Comic - + DRY - + FCs - + FCe - + SCs - + SCe - + COOL END Serinletmek son - + IO Command - + Hottop Heater - + Hottop Fan - + Hottop Command @@ -1644,12 +1644,12 @@ END Metini şlemek - + profiles Profiler - + other Başka @@ -1657,17 +1657,17 @@ END Error Message - + Exception: Istisna: - + Value Error: Numara eksiklik: - + IO Error: IO eksiklik: @@ -1677,42 +1677,42 @@ END eksiklik - + Unable to move CHARGE to a value that does not exist numarasız şarj olmaz - + Modbus Error: Modbus eksiklik: - + Serial Exception: Serial istisna: - + F80h Error F80h eksiklik - + CRC16 data corruption ERROR. TX does not match RX. Check wiring CRC16 veriler bozukluk. TX RX denk gelmiyor. Kablolamaki kontrol et - + No RX data received RX veriler teslim olmadı - + DTAcommand(): %1 bytes received but 15 needed DTA kumanda():%1 bayt teslim oldu ama 15 tane lazım - + Unable to open serial port Serial koneksiyon açılmıyor @@ -1722,62 +1722,62 @@ END HH806AU derecesi():%1 bayt teslim oldu fakat 14 lazım - + HH806Wtemperature(): Unable to initiate device HH806W derecesi(): aleti Ilk duruma gelmesi olmıyor - + HH506RAGetID: %1 bytes received but 5 needed HH506RAGetID:%1 bayt teslim oldu fakat 5 lazım - + HH506RAtemperature(): Unable to get id from HH506RA device HH506RA derecesi(): ID HH506RA almayı başarmak olmıyor - + HH506RAtemperature(): %1 bytes received but 14 needed HH506RA derecesi(): %1 bayt teslim oldu fakat 14 lazım - + CENTER302temperature(): %1 bytes received but 7 needed CENTER302 derecesi(): %1 bayt teslim oldu fakat 7 lazım - + CENTER303temperature(): %1 bytes received but 8 needed CENTER303 derecesi(): %1 bayt teslim oldu fakat 8 lazım - + CENTER306temperature(): %1 bytes received but 10 needed CENTER306 derecesi(): %1 bayt teslim oldu fakat 10 lazım - + CENTER309temperature(): %1 bytes received but 45 needed CENTER309 derecesi(): %1 bayt teslim oldu fakat 45 lazım - + Arduino could not set channels Arduino kanalariı yerleştiremiyor - + Arduino could not set temperature unit Arduino derece parçasını yerleştiremiyor - + Serial Exception: invalid comm port Serial istisnai durum: hatalı comm koneksiyon - + Serial Exception: timeout Serial istisnai durum: süresi geçmiş @@ -1787,37 +1787,37 @@ END Alet eksiklik - + Segment values could not be written into PID Bölüm numara PID yazmak olmıyor - + RampSoak could not be changed RampSoak değişmiyor - + pid.readoneword(): %1 RX bytes received (7 needed) for unit ID=%2 pid.readoneword():%1Alet ID=%2 için RX bayt teslim oldu (7 lazım) - + Univariate: no profile data available - + Polyfit: no profile data available - + MS6514temperature(): %1 bytes received but 16 needed - + HH806AUtemperature(): %1 bytes received but 16 needed HH806AU derecesi():%1 bayt teslim oldu fakat 14 lazım {806A?} {1 ?} {16 ?} @@ -1827,7 +1827,7 @@ END - + Arduino could not set filters @@ -1888,147 +1888,147 @@ END Form Caption - + Extras Ayrı olaraklar - + Roast Properties Kavurma tercihleri - + Artisan Platform Artisan platform - + Settings Viewer Ayarları gösteren - + Serial Log Serial protokol - + Error Log Bozukluk protokol - + Message History Mesaj tarihi - + Keyboard Autosave [a] Klavye otomatik kaydetmek - + AutoSave Path Otomatik yol kaydetmek - + Axes Dingiler - + Roast Calculator Kavurma hesap makinesi - + Events Olaylar - + Roast Phases Kavurma dönem - + Cup Profile Fincan profil - + Profile Background Profil arka plan - + Statistics Istatistiks - + Designer Config Dizayn tercihleri konfigürasyon - + Manual Temperature Logger Elle yapılan derece not etmek - + Serial Ports Configuration Serial koneksiyon - + Device Assignment Alet tahsisi - + Colors Renkler - + Wheel Graph Editor Tekerlek grafik editör - + Alarms Alarm - + Fuji PXR PID Control Fuji PXR PID kontrol - + Fuji PXG PID Control Fuji PXG PID kontrol - + Delta DTA PID Control Delta DTA PID kontrol - + Arduino Control - + Volume Calculator - + Tare Setup @@ -2036,247 +2036,247 @@ END GroupBox - + Curves Eğri çizgiler - + LCDs LCDs - + HUD HUD - + Input Filters Giriş filtreler - + Interpolate Enterpolasyon - + Univariate Bir değişir kemiyer - + Appearance Görünüş - + Resolution Çözünürlük - + Sound Nağme - + Times Süreler - + Time Axis Süre eksen - + Temperature Axis Derece eksen - + DeltaBT/DeltaET Axis DeltaBT/DeltaET eksen - + Legend Location Resim alt yazısı yeri - + Grid Kafes - + Rate of Change Değişme oranı - + Temperature Conversion Derece değiştirme - + Weight Conversion Ağırlık değiştirme - + Volume Conversion Hacim değiştirme - + Event Types Olay cinsler - + Default Buttons Ana düğmeler - + Management Yönetim - + Evaluation Değerlendirme - + Display Görüntü - + Initial Settings Ilk ayarlar - + Input 1 Giriş 1 - + Input 2 Giriş 2 - + Input 3 Giriş 3 - + Input 4 Giriş 4 - + PID PID - + Arduino TC4 Arduino TC4 - + External Program Dış program - + Symbolic Assignments Sembolik tahsisi - + Timer LCD LCD kronometre - + ET LCD ET LCD - + BT LCD BT LCD - + DeltaET LCD DeltaET LCD - + DeltaBT LCD DeltaBT LCD - + Extra Devices / PID SV LCD Extra alet / PID SV LCD - + Label Properties Etiket tercihleri - + Polyfit - + Look - + Network - + p-i-d - + Set Value - + Phidget IO - + Phidgets 1045 - + Phidgets 1046 RTD - + WebLCDs @@ -2286,12 +2286,12 @@ END Sampling çevresi - + Phidgets 1048/1051 - + Sampling @@ -2487,12 +2487,12 @@ END derece/ dakika - + ET ET - + BT BT @@ -2507,42 +2507,42 @@ END DeltaBT - + at at - + CHARGE Şarj - + DRY END Kurutmak son - + FC START FC start - + FC END FC son - + SC START SC start - + SC END SC son - + DROP Damla @@ -2577,7 +2577,7 @@ END d/m - + Time Süre @@ -2612,32 +2612,32 @@ END Olay #<b>%1 </b> - + City Şehir - + City+ Şehir+ - + Full City Tüm şehir - + Full City+ Tüm şehir+ - + Light French Hafif Fransız - + French Fransız @@ -2647,7 +2647,7 @@ END Hedefe ET %2 %1 gerekiyor - + at %1 %1 de @@ -2657,192 +2657,192 @@ END Hedefe BT %2 %1 gerekiyor - + %1 after FCs %1 FCs de sonra - + %1 after FCe %1 FCe de sonra - + ET - BT = %1 ET - BT = %1 - + ET - BT = %1%2 ET - BT = %1%2 - + ET Target 1 ET hedef 1 - + BT Target 1 BT hedef 1 - + ET Target 2 ET hedef 2 - + BT Target 2 BT hedef 1 - + Mode Sıyga - + ET p-i-d 1 ET p-i-d 1 - + Smooth Deltas Yumuşak Deltalar - + Smooth Curves Yumuşak virajlar - + min min - + max max - + Y(x) Y(x) - + COOL Soğut - + Title Başlık - + Date Tarih - + Beans Fasulye - + Weight Ağırlık - + in giriş - + out çıkış - + % % - + Volume Hacim - + Density Yoğunluk - + per başına - + Bean Size Fasulye büyüklük - + mm mm - + Whole Color Tüm renk - + Ground Color Yer renk - + Moisture Greens Kaydetmek şartlar - + % % - + Ambient Conditions Çevre şartları - + Roaster Kavurmak aleti - + Operator işçi - + Roasting Notes Kavurmak not - + Cupping Notes Fincan adeti not - + Ambient Source Çevre pınar @@ -2852,492 +2852,492 @@ END Yoğunluk giriş %1 g/l => yoğunluk çıkış: %2 g/l - + (%1 g/l) (%1 g/l) - + Number of errors found %1 Hatalı miktar bulundu %1 - + Max Max - + Min Min - + Rotation Rotasyon - + Initial Max Ilk Max - + Step Adım - + Style Stil - + Width Genişlik - + Opaqueness Opaqueness - + Enter two times along profile Iki sefer profile göre yürü - + Start (00:00) Start (00:00) - + End (00:00) Son (00:00) - + Fahrenheit Fahrenheit - + Celsius Celsius - + Time syntax error. Time not valid Süre sentaks yanlışlık. Süre doğru değil - + Error: End time smaller than Start time Yanlışlık. Son süre baş süreden küçük - + Best approximation was made from %1 to %2 En iyi yanaşma %1 dan %2 yapıldı - + No profile found Profiler bulunmadı - + Bars Barlar - + Color Renk - + Marker Markör - + Thickness Kalınlık - + Opacity İşık geçmesi - + Size Büyüklük - + Max buttons per row Max düğmeler sira başına - + Color Pattern Renk Deseni - + palette # palett # - + Event Olay - + Action Hareket - + Command Kumanda - + Offset Eşit kılmak - + Factor Faktör - + Drying Kurulamak - + Maillard Maillard - + Development Delişim - + Default Ilk ayarlar - + Aspect Ratio Görünüş oran - + ET Color ET renk - + BT Color BT renk - + DeltaET Color DeltaET renk - + DeltaBT Color DeltaBT renk - + Text Warning Yazı ibret - + sec dak - + Cooling Soğutmak - + Curviness Eğrilik - + Events Playback Olay çalmak - + Comm Port Comm koneksiyon - + Baud Rate Baud oran - + Byte Size Bayt büyüklük - + Parity Eşitlik - + Stopbits Stop bitler - + Timeout Süresi dolmuş - + Settings for non-Modbus devices Modbus olmıyan aletlerin ayarlari - + Slave Esir - + Register Kaydetmek - + Float Basmak - + Function Fonksiyon - + Device Alet - + Control ET Kontrol ET - + Read BT BT okku - + Type Cins - + RS485 Unit ID RS 485 alet ID - + ET Channel ET kanal - + BT Channel BT kanal - + AT Channel AT kanal - + ET Y(x) ET Y(x) - + BT Y(x) ET Y(x) - + Ratio Oran - + Text Yazı - + Edge Köşe - + Line Çizgi - + Color pattern Renk Deseni - + dg dg - + Enter description Tasviri tak - + Ramp Soak HH:MM<br>(1-4) Yumuşatmak rampa (DD:SS)<br>(1-4) - + Ramp Soak HH:MM<br>(5-8) Yumuşatmak rampa (DD:SS)<br>(5-8) - + Ramp/Soak Pattern Rampa/Yumuşatmak desen - + WARNING Ibret - + Writing eeprom memory EEproma kaydediliyor - + <u>Max life</u> 10,000 writes <u>Max hayat</u> 10,000 yazmak/silmek - + Infinite read life. Sınırsız okumak (hayat). - + After <u>writing</u> an adjustment,<br>never power down the pid<br>for the next 5 seconds <br>or the pid may never recover. <u>Takmadan sonra</u> bir ayarlamak,<br>hiç bir zaman pidi <br>gelecek 5 saniye icin kapatamaz<br>veya pid belki asla kurtulmaz. - + Read operations manual El kitabını oku - + ET Thermocouple type ET Thermocouple cins - + BT Thermocouple type BT Thermocouple cins - + NOTE: BT Thermocouple type is not stored in the Artisan settings Not: BT Thermocouple cinsi Artisan ayarlarına eklenmemis - + Artisan uses 1 decimal point Artisan 1 ondalık noktasını kullanıyor - + Ramp Soak (MM:SS)<br>(1-7) Yumuşatmak rampa (DD:SS)<br>(1-7) - + Ramp Soak (MM:SS)<br>(8-16) Yumuşatmak rampa (DD:SS)<br>(8-16) - + Pattern Desen - + SV (7-0) SV (7-0) - + Write Kaydet - + P P - + I I - + D D - + Artisan Fuji PXG uses MINUTES:SECONDS units in Ramp/Soaks Artisan Fuji PXG Dakika: Saniye birim rampa/ıslatmak da kullanıyor - + SV SV @@ -3362,22 +3362,22 @@ END - + Start - + End - + Path Effects - + Font @@ -3407,12 +3407,12 @@ END Start teybe almak - + Prefix - + Source Kaynak @@ -3422,77 +3422,77 @@ END - + Window - + Cycle - + Lookahead - + Manual - + Ramp/Soak - + Background Arka plan - + SV Buttons - + SV Slider - + Coarse - + Host - + Port - + HUD Button - + Raw - + ServerId: - + Password: @@ -3527,12 +3527,12 @@ END - + Moisture Roasted - + Density in: %1 g/l => Density out: %2 g/l @@ -3557,112 +3557,112 @@ END - + <b>%1</b> %2/sec, <b>%3</b> %4/min - + Async - + Change - + Gain - + Rate - + Wiring - + Delta Span - + Unit - + ml ml - + Unit Weight - + g g - + Kg kg - + l I - + in giriş - + out çıkış - + Moisture loss: %1% Organic loss: %2% - + Filter - + Emissivity - + ON - + OFF Kapat - + %1 to reach ET %2 - + %1 to reach BT %2 @@ -3672,17 +3672,17 @@ END - + XT Color - + XT - + current palette @@ -3728,52 +3728,52 @@ END Marker - + Circle Daire - + Square Kare - + Pentagon Beşgen - + Diamond Elmas - + Star Yıldız - + Hexagon 1 Altıgen 1 - + Hexagon 2 Altıgen 2 - + + + - + x x - + None Hiç @@ -4394,7 +4394,7 @@ Profile missing [CHARGE] or [DROP] Zeni profil vermek - + Open Wheel Graph Teker grafiki aç @@ -4554,7 +4554,7 @@ Profile missing [CHARGE] or [DROP] Içindekiler listesini seç - + No profile found Profil bulunmadı @@ -4660,152 +4660,152 @@ Continue? Saniye - + Alarm Config Alarm ayarlar - + Alarms are not available for device None Alarmlar yok olan alet için yok - + Switch Language Lisanı değiştir - + Language successfully changed. Restart the application. Lisan değişti. Programı yeniden aç. - + Import K202 CSV Dışalım K202 CSV - + K202 file loaded successfully K202 okundu - + Import K204 CSV Dışalım K204 CSV - + K204 file loaded successfully K204 okundu - + Import HH506RA CSV Dışalım HH506RA CSV - + HH506RA file loaded successfully HH506RA CSV okundu - + Save Graph as PNG Grafiki PNG olarak kaydet - + %1 size(%2,%3) saved %1 boy(%2,%3) kaydedili - + Save Graph as SVG Grafiki SVG olarak kaydet - + %1 saved %1 kaydedili - + Invalid Wheel graph format Hatalı grafik teker formatı - + Wheel Graph succesfully open Grafik tekeri açıldı - + Return the absolute value of x. Kesin değerini geri verdi. - + Return the arc cosine (measured in radians) of x. Arccosinüs x geri verdi (radiant birimi). - + Return the arc sine (measured in radians) of x. Arcsinüs x geri verdi (radiant birimi). - + Return the arc tangent (measured in radians) of x. Arctanjant x geri verdi (radiant birimi). - + Return the cosine of x (measured in radians). Cosinüs x geri verdi (radiant birimi). - + Convert angle x from radians to degrees. Açı x radiantan dereceye değişti. - + Return e raised to the power of x. e^x geri verdi. - + Return the logarithm of x to the given base. log(x) geri verdi (özür baz). - + Return the base 10 logarithm of x. log(x) geri verdi (baz 10). - + Return x**y (x to the power of y). x**y geri verdi (x^y). - + Convert angle x from degrees to radians. Açı x dereceden radianta değişti. - + Return the sine of x (measured in radians). Sinüs x geri verdi (radiant birimi). - + Return the square root of x. x-in karekökünü almak geri verdi. - + Return the tangent of x (measured in radians). Tanjant x geri verdi (radiant birimi). @@ -4840,122 +4840,122 @@ Continue? önceki Extra #2 T2 değeri - + MATHEMATICAL FUNCTIONS Matematik fonksiyon - + SYMBOLIC VARIABLES Sembolik değişken - + Symbolic Functions Sembolik - + Save Palettes Paletleri kaydet - + Palettes saved Paletleri kaydedildi - + Invalid palettes file format Hatalı paletler dosya formatı - + Palettes loaded Paletler yüklendi - + Load Palettes Paletleri yükle - + Alarms loaded Alarmlar yüklendi - + Interpolation failed: no profile available Interpolasyon olmadı: profil yok - + Sound turned ON Tonlar kapanık - + Sound turned OFF Tonlar açık - + [ET target 1 = %1] [BT target 1 = %2] [ET target 2 = %3] [BT target 2 = %4] [ET amaç 1 = %1] [BT amaç 1 = %2] [ET amaç 2 = %3] [BT amaç 2 = %4] - + Event #%1 added Olay #%1 eklendi - + Event #%1 deleted Olay #%1 silindi - + No events found Olaylar yok - + Roast properties updated but profile not saved to disk Kavurma tercihleri yenileşti ama profiler kaydetmek olmadı - + Autosave ON. Prefix: %1 Otomatik kaydetmek aç. Prefix: %1 - + Autosave OFF Otomatik kaydetmek kapalı - + xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) - + <b>Event</b> hide or show the corresponding slider <b>Olay</b> gizle veya itmek düğmeyi göster - + <b>Action</b> Perform an action on slider release <b>Hareket</b> hareket itmek düğmeyi salmakdan sonra başlıyor - + <b>Command</b> depends on the action type ('{}' is replaced by <i>value</i>*<i>factor</i> + <i>offset</i>) <b>Komando</b> hareket çinsine bağlı ('{}' <i>değer</i>*<i>faktör</i> + <i>ofset</i> değişti) - + Serial Command: ASCII serial command or binary a2b_uu(serial command) Serial Komando: ASCII serial komando veya ikili a2b_uu(serial komando) @@ -4965,47 +4965,47 @@ Continue? Modbus Komando: yazıyor([köleid,dizin,değer],..,[köleid,dizin,değer]) değerini köle dizinine yazıyor ids den bölümlere ayırtarak belirtmek - + DTA Command: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating DTA Komando: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating - + <b>Offset</b> added as offset to the slider value <b>Eşitleme</b> eşitleme itmek düğmeyi değerine toplanıyor - + <b>Factor</b> multiplicator of the slider value <b>Faktör</b> itmek düğmeyi değerine çarpan - + Event custom buttons Olay müşteri düğmesi - + Event configuration saved Olay konfigürasyonu kaydet edildi - + Found empty event type box Boş olay tip kutusu bulundu - + <b>Button Label</b> Enter \n to create labels with multiple lines. <b>Düğme isimi</b> Enter \n mültipl çizgili düğme isimi yaratmak için. - + <b>Event Description</b> Description of the Event to be recorded. <b>Olay tasvir</b> teybe çekilen olay tasviri. - + <b>Event type</b> Type of event to be recorded. <b>Olay cins</b> teybe çekilen olay cinsi. @@ -5015,127 +5015,127 @@ Continue? <b>Olay değeri</b> teybe çekilen olay değeri (1-10) - + <b>Action</b> Perform an action at the time of the event <b>Hareket</b> olay olunca bir haraket ediyor - + <b>Documentation</b> depends on the action type ('{}' is replaced by the event value): <b>Doküman</b> haraket cinsine göre bağlı('{}' olay değerinen değiştirildi): - + Call Program: A program/script path (absolute or relative) Programı çağır: Bir program/ yazması yol (kesin veya göreli) - + Multiple Event: Adds events of other button numbers separated by a comma: 1,2,3, etc. Mültipl olay: başka düğmelerin numaralarını virgül nen ayrılan takılmış: 1,2,3, etc. - + <b>Button Visibility</b> Hides/shows individual button <b>Düğme görüntüsü</b> Gizle/göster özel düğmeyi - + <b>Keyboard Shorcut: </b> [b] Hides/shows Extra Button Rows <b>Klavye kestirme yol: </b> [b] Gizle/göster extra düğme sıralarını - + Phases changed to %1 default: %2 Dönemler %1 ilk ayarlara: %2 değişti - + Background profile not found Arka plan profili bulunmadı - + Background does not match number of labels Arka plan yazı sayısınan denk gelmiyor - + Playback Aid set ON at %1 secs Geri vermek yardımı açık %1 sanye sonra - + No profile background found Arka plan profileri bulunmadı - + Reading background profile... Arka plan profileri okumak... - + Not enough time points for an ET curviness of %1. Set curviness to %2 ET %1 kavisi icin yeterli kadar zaman noktalar yok . Kavisini %2 tak - + Designer Config Designer ayarlar - + Not enough time points for an BT curviness of %1. Set curviness to %2 BT %1 kavisi icin yeterli kadar zaman noktalar yok . Kavisini %2 tak - + CHARGE Şarj - + DRY END Kurutmak zamani son - + FC START FC start - + FC END FC son - + SC START SC start - + SC END SC son - + DROP Damla - + Incorrect time format. Please recheck %1 time Hatalı süre şekili. Lütfen %1 süre kontrol et - + Times need to be in ascending order. Please recheck %1 time Süre yükselen şekilde lazım. Lütfen %1 süre kontrol et - + Designer has been reset Designer ilk ayarlarnan başladı @@ -5190,12 +5190,12 @@ Continue? Az aletler 4 bayt floats iki tane dizinde biriktiriyor. - + Tick the Float flag in this case. Bu olayda su basmak bayrağını kaldır. - + Serial Port Settings: %1, %2, %3, %4, %5, %6 Serial koneksiyon ayarlar: %1, %2, %3, %4, %5, %6 @@ -5205,137 +5205,137 @@ Continue? Koneksiyon aramak bu platform üstünde şimdi daha yok - + External program Dış program - + Device not set Alet ayarda değil - + PID to control ET set to %1 %2 ; PID to read BT set to %3 %4 PID kontrol için ET %1 %2 tak ; PID okumak için BT %3 %4 tak - + Device set to %1. Now, check Serial Port settings Aleti %1 tak. şimdi serial koneksiyonun ayarlarına bak - + Device set to %1. Now, chose serial port Alet %1 takıldı. şimdi serial koneksiyonun seç - + Device set to CENTER 305, which is equivalent to CENTER 306. Now, chose serial port Alet CENTER 305 e kaydet edildi, bu CENTER 306 aynı şekilde. şimdi seri koneksiyonu seç - + Device set to %1, which is equivalent to CENTER 309. Now, chose serial port Alet %1 e kaydet edildi, bu CENTER 309 aynı şekilde. şimdi seri koneksiyonu seç - + Device set to %1, which is equivalent to CENTER 303. Now, chose serial port Alet %1 e kaydet edildi, bu CENTER 303 aynı şekilde. şimdi seri koneksiyonu seç - + Device set to %1, which is equivalent to CENTER 306. Now, chose serial port Alet %1 e kaydet edildi, bu CENTER 306 aynı şekilde. şimdi seri koneksiyonu seç - + Device set to %1, which is equivalent to Omega HH506RA. Now, chose serial port Alet %1 e kaydet edildi, bu Omega HH506RA aynı şekilde. şimdi seri koneksiyonu seç - + Device set to %1, which is equivalent to Omega HH806AU. Now, chose serial port Alet %1 e kaydet edildi, bu Omega HH806AU aynı şekilde. şimdi seri koneksiyonu seç - + Device set to %1 Alet %1 e kaydet edildi - + Device set to %1%2 Alet %1%2 e kaydet edildi - + Device set to %1, which is equivalent to CENTER 302. Now, chose serial port Alet %1 e kaydet edildi, bu CENTER 302 aynı şekilde. şimdi seri koneksiyonu seç - + Color of %1 set to %2 Renk %1 %2 değişti - + Save Wheel graph Teker grafiki kaydet - + Wheel Graph saved Teker grafiki kaydet edildi - + Load Alarms Alarmları oku - + Save Alarms Alarmları kaydet - + <b>Status:</b> activate or deactive alarm <b>Statü:</b> alarmı aç veya kapat - + <b>If Alarm:</b> alarm triggered only if the alarm with the given number was triggered before. Use 0 for no guard. <b>Eğer Alarm:</b>önceki bağlanmış alarm numarasınan yaratılmışa alarm tek yaratılıyor. Korumasını istemiyorsan 0 kullan. - + <b>From:</b> alarm only triggered after the given event <b>Şu:</b> alarm tek bağlanmış olaynan yaratılıyor - + <b>Time:</b> if not 00:00, alarm is triggered mm:ss after the event 'From' happend <b>Süre:</b> 00:00 değil se, alarm dd:ss olay 'dan' oldukça sonra yaratıldı - + <b>Source:</b> the temperature source that is observed <b>Kaynak:</b> gözlemek olan dereceyi yükselten kaynak - + <b>Condition:</b> alarm is triggered if source rises above or below the specified temperature <b>Şart:</b> alarm tek yaratılıyor eğer kaynak beli bir dereceyin üstüne veya altına kalıyorsa - + <b>Temp:</b> the speficied temperature limit <b>Derece:</b> özel derece limit - + <b>Action:</b> if all conditions are fulfilled the alarm triggeres the corresponding action <b>Hareket:</b> Eğer tüm şartlar yerine gelmişse bu alarm bağlanmış hareketi yaratıyor @@ -5345,85 +5345,85 @@ Continue? <b>Tarif:</b> popupin yazısı,programın ismi, olay düğmesinin numarası (eğer 0 soğutmak olay başlıyoris) veya itmek düğmeyin yeni değeri - + <b>NOTE:</b> each alarm is only triggered once <b>NOT:</b> her alarm tek bir sefer başlıyor - + OFF Kapat - + CONTINUOUS CONTROL Sürekli kontrol - + ON - + STANDBY MODE Teneffüs sıygası - + The rampsoak-mode tells how to start and end the ramp/soak Yumuşatmak rampa mod nasıl yumuşatmak/rampayı açıp kapanmasını anlatıyor - + Your rampsoak mode in this pid is: Yumuşatmak rampa mod bu pid de: - + Mode = %1 Mod = %1 - + Start to run from PV value: %1 PV değer: %1 den start - + End output status at the end of ramp/soak: %1 Yumuşatmak rampası çıktı statü: %1 - + Output status while ramp/soak operation set to OFF: %1 Yumuşatmak rampası kapanınça çıktı statü %1 - + Repeat Operation at the end: %1 Komando sondan tekrarlamak: %1 - + Recomended Mode = 0 Tavsiye edilen mod = 0 - + If you need to change it, change it now and come back later Değişmesini istersen şimdi değiştir ve sonra geri dön - + Use the Parameter Loader Software by Fuji if you need to Istersen Fujiden parametre kaydet eden programı kullan - + Continue? Devam? @@ -5433,52 +5433,52 @@ Repeat Operation at the end: %1 Yumuşatmak rampası mod - + Current sv = %1. Change now to sv = %2? Aktüel sv = %1. şimdi sv = %2 değişsinmi? - + Change svN svN değiştir - + Current pid = %1. Change now to pid =%2? Aktüel pid = %1. şimdi pid = %2 değişsinmi? - + Ramp Soak start-end mode Yumuşatmak rampası start-son mod - + Pattern changed to %1 Desen %1e değişti - + Pattern did not changed Desen değişmedi - + Ramp/Soak was found ON! Turn it off before changing the pattern Yumuşatmak rampası yakılı! Deseni değiştirmekten önce kapat - + Ramp/Soak was found in Hold! Turn it off before changing the pattern Yumuşatmak rampası teneffüsde! Deseni değiştirmekten önce kapat - + Activate PID front buttons Öndeki PID düğmeleri aç - + Remember SV memory has a finite life of ~10,000 writes. @@ -5488,52 +5488,52 @@ Proceed? Devam? - + RS ON RS aç - + RS OFF RS kapat - + RS on HOLD RS teneffüsde - + PXG sv#%1 set to %2 PXG sv#%1 %2 değişti - + PXR sv set to %1 PXR sv %1 değişti - + SV%1 changed from %2 to %3) SV%1 %2 to %3) değişti - + Unable to set sv%1 sv%1 değişmesi olmıyor - + SV changed from %1 to %2 SV %1 %2 değişti - + Unable to set sv SV değişmesi olmıyor - + Unable to set new sv SV yeni değişmesi olmıyor @@ -5548,27 +5548,27 @@ Devam? - + Save Graph as PDF - + Phidget Temperature Sensor 4-input attached - + Phidget Bridge 4-input attached - + Device set to %1. Now, chose Modbus serial port - + <b>But Not:</b> alarm triggered only if the alarm with the given number was not triggered before. Use 0 for no guard. @@ -5584,17 +5584,17 @@ Continue? - + <b>Description:</b> the text of the popup, the name of the program, the number of the event button or the new value of the slider - + Load PID Settings - + Save PID Settings @@ -5614,12 +5614,12 @@ Continue? - + current background ET - + current background BT @@ -5629,27 +5629,27 @@ Continue? - + Phidget 1018 IO attached - + Load Ramp/Soak Table - + Save Ramp/Soak Table - + PID turned on - + PID turned off @@ -5659,72 +5659,72 @@ Continue? - + Return the minimum of x and y. - + Return the maximum of x and y. - + The MODBUS device corresponds to input channels - + 1 and 2.. The MODBUS_34 extra device adds - + input channels 3 and 4. Inputs with slave - + id set to 0 are turned off. Modbus function 3 - + 'read holding register' is the standard. - + Modbus function 4 triggers the use of 'read - + 2 byte integer registers. A temperature of 145.2C - + is often sent as 1452. In that case you have to - + use the symbolic assignment 'x/10'. Few devices - + hold data as 4 byte floats in two registers. - + Yocto Thermocouple attached - + Yocto PT100 attached @@ -5734,92 +5734,92 @@ Continue? - + Phidget Temperature Sensor IR attached - + input register'. Input registers (fct 4) usually - + are from 30000-39999. Most devices hold data in - + IO Command: set(n,0), set(n,1), toggle(n) to set Phidget IO digital output n - + ET value - + BT value - + Extra #1 T1 value - + Extra #1 T2 value - + Extra #2 T1 value - + Extra #2 T2 value - + Yn holds values sampled in the actual interval if refering to ET/BT or extra channels from devices listed before, otherwise Yn hold values sampled in the previous interval - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) writes values to the registers in slaves specified by the given ids - + <b>Event value</b> Value of event (1-100) to be recorded - + Phidget Temperature Sensor IR detached - + Phidget Temperature Sensor 4-input detached - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) or wcoils(slaveId,register,&lt;bool&gt;) writes values to the registers in slaves specified by the given ids - + Phidget Bridge 4-input detached - + Phidget 1018 IO detached @@ -5828,21 +5828,16 @@ Continue? Hottop control turned off - - - Hottop control turned on - - Radio Button - + Meter Meter - + PID PID @@ -5852,12 +5847,12 @@ Continue? Arduino TC4 - + Program Program - + TC4 @@ -5956,132 +5951,132 @@ Continue? StatusBar - + Playback Aid set OFF Çalmak yardımi kapat - + Ready Hazır - + Decimal position successfully set to 1 Decimal pozisyonu başarılı 1 yerleşti - + Problem setting decimal position Decimal pozisyonu yerleştirmek olmadı - + Problem setting thermocouple type Thermocouple yerleştirmek olmadı - + setting autotune... otomatik ayarlama ayarlar... - + Autotune successfully turned OFF otomatik ayarlama kapalı - + Autotune successfully turned ON otomatik ayarlama açık - + wait... bekle... - + PID OFF PID kapalı - + PID ON PID açık - + SV successfully set to %1 SV %1 ayarlandı - + Empty SV box SV kutusu boş - + Unable to read SV SV okumak olmıyor - + Ramp/Soak operation cancelled Rampa/yumuşatmak açmakdan vazgeçmek - + No RX data RX veriler yok - + RS ON RS Aç - + Need to change pattern mode... desen sıygaya değiştirmek ihtiyaç var... - + Pattern has been changed. Wait 5 secs. desen değişti. 5 saniye bekle. - + Pattern could not be changed desen değiştirmesi olmıyor - + RampSoak could not be changed Yumuşatmak rampası değiştirmesi olmıyor - + RS OFF RS Kapat - + RS successfully turned OFF RS kapalı - + setONOFFrampsoak(): Ramp Soak could not be set OFF setONOFFramesoak():Yumuşatmak rampası kapanmıyor - + getsegment(): problem reading ramp getsegment():rampa okumak olmıyor - + getsegment(): problem reading soak getsegment():yumuşatmak okumak olmıyor @@ -6091,207 +6086,207 @@ Continue? getallsegment(): R/S okuması hatalı - + Finished reading Ramp/Soak val. R/S değerini okuması bitti. - + Finished reading pid values pid değerini okuması bitti - + setpid(): There was a problem setting %1 setpid(): %1 yerleştirmek olmadı - + Ramp/Soak successfully written Rampa/yumuşatmak başarılı yerleşti - + Time Units successfully set to MM:SS Süre birimi DD:SS yerleşti - + Problem setting time units Süre birimi yerleştirmek olmadı - + Thermocouple type successfully set Thermocouple cinsi başarılı seçilmiş - + SV%1 set to %2 SV%1 %2 yerleşti - + Problem setting SV SV yerleştirmek olmıyor - + Cancelled svN change svN değişmesinden vazgeçildi - + PID already using sv%1 PID şimdikden sv%1 değerinde - + setNsv(): bad response setNsv(): hatalı cevap - + setNpid(): bad confirmation setNpid(): hatalı cevap - + Cancelled pid change pid değişmesinden vazgeçildi - + PID was already using pid %1 PID şimdikden pid%1 değerinde - + setNpid(): Unable to set pid %1 yerleştir Npid(): pid %1 yerleştirmesi olmıyor - + SV%1 successfully set to %2 SV%1 %2 yerleşti - + setsv(): Unable to set SV setsv(): SV yerleştirmek olmıyor - + pid #%1 successfully set to (%2,%3,%4) pid#%1 başarılı (%2,%3,%4) yerleşti - + pid command failed. Bad data at pid%1 (8,8,8): (%2,%3,%4) pid komando olmıyor. Hatalı veriler burada pid%1(888):(%2,%3,%4) - + getallpid(): Unable to read pid values getallpid(): pid değerini okumak olmıyor - + PID is using pid = %1 PID pid = %1 kullanıyor - + getallpid(): Unable to read current sv getallpid(): sv okumak olmıyor - + PID is using SV = %1 PID SV =%1 kullanıyor - + Ramp Soak could not be set OFF Yumuşatmak rampası kapanmıyor - + PID set to OFF PID kapalı konuma koyuldu - + PID set to ON PID açık konuma koyuldu - + Unable Yetersiz - + No data received Gelen veriler yok - + Reading Ramp/Soak %1 ... Rampa/yumuşatmak oku %1... - + problem reading Ramp/Soak Rampa/yumuşatmak okumak olmıyor - + Current pid = %1. Proceed with autotune command? Aktüel PID =%1. Otomatik ayarlamanan devam? - + Autotune cancelled Otomatik ayarlamadan vaz geçildi - + UNABLE to set Autotune Otomatik ayarlama olmıyor - + SV SV - + Ramp (MM:SS) Rampa (DD:SS) - + Soak (MM:SS) Yumuşatmak (DD:SS) - + Work in Progress iş yapmakda - + sending commands for p%1 i%2 d%3 kumandalar p%1 i%2 d%3 için gönderiliyor - + %1 successfully sent to pid %1 başarılı pid ye gönderildi - + pid changed to %1 pid başarılı %1 yerleşti @@ -6299,157 +6294,157 @@ Continue? Tab - + HUD HUD - + Plotter Baskıcı - + Math Matematik - + UI Kullanımı yüzü - + General Genel - + Notes Notlar - + Events Olaylar - + Data Variler - + Config Ayarlar - + Buttons Düğmeler - + Sliders Sürme düğmeler - + Palettes Paleti - + Style Stil - + ET/BT ET/ BT - + Extra Extra - + Modbus Modbus - + Scale Büyütmek - + Extra Devices Extra alet - + Symb ET/BT Sembol ET/ BT - + Graph Grafik - + LCDs LCD's - + RS RS - + SV SV - + PID PID - + Set RS RS yerleştir - + Color - + Quantifiers - + Ramp/Soak - + Phidgets - + Filter - + Espresso @@ -6467,12 +6462,12 @@ Continue? Rel Saat - + ET ET - + BT BT @@ -6528,242 +6523,242 @@ Continue? %1 Olay #%2 %3%4 - + Time Saat - + Description Tasvir - + Type Cins - + Value Değerini - + Label Etiket - + Action Hareket - + Documentation Doküman - + Visibility Görülenmesi - + Color Renk - + Text Color Metin rengi - + Device Alet - + Comm Port Comm koneksiyon - + Baud Rate Baud oran - + Byte Size bayt büyüklük - + Parity Eşitlik - + Stopbits Stop bit - + Timeout Süresi dolmuş - + Color 1 Renk 1 - + Color 2 Renk 2 - + Label 1 Etiket 1 - + Label 2 Etiket 2 - + y1(x) y1(x) - + y2(x) y2(x) - + LCD 1 LCD 1 - + LCD 2 LCD 2 - + Curve 1 Eğri çizgi 1 - + Curve 2 Eğri çizgi 2 - + Parent Ana - + Width Genişlik - + Opaqueness Transparan - + Delete Wheel Tekeri sil - + Edit Labels Etiketi işlemek - + Update Labels Etiketi güncelleme - + Properties Özellikler - + Radius Hareket alanı - + Starting angle Start açi - + Projection Projeksiyon - + Text Size Metin boyu - + Color Pattern Renk deseni - + Status Durum - + If Alarm If alarm - + From Kimden - + Source Kaynak - + Condition Kondüsyon - + Temp Geçici - + SV SV - + Ramp HH:MM Rampa HH:MM - + Soak HH:MM Yumuşatmak HH:MM @@ -6773,85 +6768,90 @@ Continue? Start - + DRY END Kurutmak son - + FC START FC start - + FC END FC bitiş - + SC START SC start - + SC END SC bitiş - + DROP Damla - + COOL Soğut - + EVENT #%2 %3%4 Olay #%2 %3%4 - + CHARGE - + But Not - + DeltaET - + DeltaBT - + EVENT #%1 %2%3 - + Beep Korna - + Name - + Weight Ağırlık + + + Nr + + Textbox @@ -7224,204 +7224,204 @@ Pungency Olaylari yenilemek - + <b>Label</b>= <b>Etiket</b>= - + <b>Description </b>= <b>Etiket</b>= - + <b>Type </b>= <b>Cins</b>= - + <b>Value </b>= <b>Sayı</b>= - + <b>Documentation </b>= <b>Doküman</b>= - + <b>Button# </b>= <b>Düğme</b>= - + Save image using current graph size to a png format Resimi grafik boynan png formata kaydet - + linear: linear interpolation cubic: 3rd order spline interpolation nearest: y value of the nearest point Çizgisel: çizgisel enterpolasyon: 3rd spline enterpolasyon en yakın: y en yakın değerinde - + ON/OFF logs serial communication Serial haberleşmeyi Aç/Kapat - + Automatic generated name = This text + date + time Otomatik takılan isim = This text + date + time - + ON/OFF of automatic saving when pressing keyboard letter [a] Otomatik kaydet etmek (Aç/Kapat) harf [a] basın - + Sets the directory to store batch profiles when using the letter [a] Batch profileri takmak ve içindekiler listesini acmak için harf [a] basın - + Allows to enter a description of the last event Son olaya not takmak icin izin ver - + Add new extra Event button Yeni extra olayı tak - + Delete the last extra Event button Son extra olayı sil - + Show help Yardım göster - + Backup all palettes to a text file Tüm paletleri yazıya yaz - + Action Type Haraketin cinsi - + Action String Haraketin harfları - + Aspect Ratio En boy oranı - + Example: 100 + 2*x Örnek: 100 + 2*x - + Example: 100 + x Örnek: 100 + x - + Erases wheel parent hierarchy Ebeveyn teker hiyerarşini sil - + Sets graph hierarchy child->parent instead of parent->child Grafik hiyerarşi çocuk->ebeveyn den ebeveyn->çocuka değiştir - + Increase size of text in all the graph Grafikin icindeki yazıyı büyüt - + Decrease size of text in all the graph Grafikin icindeki yazıyı küçült - + Decorative edge beween wheels Dekoratif köşeler tekerleklerin arasına tak - + Line thickness Çizgi kalınlık - + Line color Çizgi renk - + Apply color pattern to whole graph Renk deseni tüm grafike tak - + Add new wheel Yeni tekerlek tak - + Rotate graph 1 degree counter clockwise Grafiki 1 derece saat ibresinin dönüşü yönüne karşı dönder - + Rotate graph 1 degree clockwise Grafiki 1 derece saat ibresinin dönüşü yönüne dönder - + Save graph to a text file.wg Grafiki yazı file.wg kaydet - + Sets Wheel graph to view mode Tekerlek grafiki görünüş sıygaya getir - + open graph file.wg Grafik file.wg aç - + Close wheel graph editor Tekerlek grafik editörü kapat - + Restore all palettes from a text file Yazıdan tüm paletleri kurtar - + Clear alarms table - + Interval diff --git a/translations/artisan_zh_CN.qm b/translations/artisan_zh_CN.qm index 08451c23c..15acd0d55 100644 Binary files a/translations/artisan_zh_CN.qm and b/translations/artisan_zh_CN.qm differ diff --git a/translations/artisan_zh_CN.ts b/translations/artisan_zh_CN.ts index e90f31f14..6bea4ed56 100644 --- a/translations/artisan_zh_CN.ts +++ b/translations/artisan_zh_CN.ts @@ -137,7 +137,7 @@ END 完成冷却 - + Update 更新 @@ -147,92 +147,92 @@ END PID 球助 - + OK - + Cancel 取消 - + Color 颜色 - + Plot 绘图 - + Background 背景 - + Virtual Device 虚拟设备 - + Save Image 保存图像 - + Help 球助 - + Info 资料 - + Set 设定 - + Defaults 默认 - + Order 排序 - + Add 增加 - + Delete 清除 - + in - + out - + Search 搜索 - + Path 路径 @@ -247,57 +247,57 @@ END 从恢复 - + Save 保存 - + Load 读入 - + Del 删除 - + Align 对齐 - + Up - + Down - + Left - + Right - + Reset 重置 - + Close 关闭 - + Create 创建 @@ -307,172 +307,172 @@ END 端口扫描 - + Select 选择 - + Grid - + Title 标题 - + Y Label Y 标签 - + X Label X 标签 - + Drying Phase 脱水阶段 - + Maillard Phase 梅纳反应阶段 - + Development Phase 发展阶段 - + Cooling Phase 冷却阶段 - + ET 环境温度 - + BT 豆温 - + DeltaET 环境温度差 - + DeltaBT 豆温差 - + Markers 标记 - + Text 文字 - + Watermarks 水印 - + C Lines C 线 - + Grey - + LED - + B/W 黑白 - + Reset Parents 重置上层 - + Reverse Hierarchy 倒转阶层 - + + - + - - + Line Color 线的颜色 - + < - + > - + Save File 保存档案 - + Save Img 保存图像 - + View Mode 唯读模式 - + Open 开启 - + Set Color 设定颜色 - + All On 开启所有 - + All Off 关闭所有 @@ -482,67 +482,67 @@ END 读取上升/保持值 - + RampSoak ON 开启 上升保持 - + RampSoak OFF 关闭 上升保持 - + PID OFF 关闭 PID - + PID ON 开启 PID - + Write SV 写入 SV - + SV Buttons ON 开启 SV 按键 - + SV Buttons OFF 关闭 SV 按键 - + Read SV 读取 SV - + Set p 设定 p - + Set i 设定 i - + Set d 设定 d - + Autotune ON 启动 自动调教 - + Autotune OFF 关闭 自动调教 @@ -552,17 +552,17 @@ END 读取 PID 值 - + Read 读取 - + Set ET PID to 1 decimal point 设定PID 环境温度至1个小数位 - + Set BT PID to 1 decimal point 设定PID 豆温至1个小数位 @@ -572,87 +572,87 @@ END 读取上升/保持值 - + Write SV1 写入 SV1 - + Write SV2 写入 SV2 - + Write SV3 写入 SV3 - + Write SV4 写入 SV4 - + Write SV5 写入 SV5 - + Write SV6 写入 SV6 - + Write SV7 写入 SV7 - + ON SV buttons 开启 SV 按键 - + OFF SV buttons 关闭 SV 按键 - + Read SV (7-0) 读取 SV (7-0) - + pid 1 - + pid 2 - + pid 3 - + pid 4 - + pid 5 - + pid 6 - + pid 7 @@ -662,102 +662,102 @@ END 读取所有 - + Set ET PID to MM:SS time units 设定PID 环境温度时间单位至MM:SS - + Write 写入 - + Read Ra/So values - + Read PID Values - + Read RS values - + Insert - + Clear - + scan - + Write All - + Write RS values - + Write SV (7-0) - + Read PIDs - + Write PIDs - + Apply - + On - + Off - + calc - + unit - + << - + >> @@ -765,122 +765,122 @@ END CheckBox - + Heavy FC 较强一爆 - + Low FC 较弱一爆 - + Light Cut 豆中线有银皮 - + Dark Cut 豆中线没有银皮 - + Drops 油滴 - + Oily 豆面有油 - + Uneven 不平均 - + Tipping 豆有烘燋圆点  - + Scorching 豆有燋化现象 - + Divots 豆面有小孔 - + DeltaET 环境温度差 - + DeltaBT 豆温差 - + Smooth Spikes 杂讯过滤 - + Drop Spikes 下豆识别 - + Limits 范围 - + Projection 预测 - + Show 显示 - + Beep - + Delete roast properties on RESET 重置时删除烘焙特性 - + Serial Log ON/OFF 串行记录 开/关 - + Autosave [a] 自动保存[a] - + Lock Max - + Button 按键 - + Mini Editor 小型 编辑工具 @@ -890,197 +890,197 @@ END 自动检测放豆进炉/下豆时间 - + CHARGE 放豆进炉 - + DRY END 脱水结束 - + FC START 一爆开始 - + FC END 一爆结束 - + SC START 二爆开始 - + SC END 二爆结束 - + DROP 下豆 - + COOL END 完成冷却 - + Auto Adjusted 放豆进炉 - + Watermarks 水印 - + Background 背景 - + Text 文字 - + Events 活动 - + Playback Aid 重播援助 - + Time 时间 - + Bar - + ETBTa - + Evaluation 评估 - + Characteristics 特性 - + ET 环境温度 - + BT 豆温 - + Load alarms from profile - + Auto CHARGE - + Auto DROP - + Mark TP - + Phases LCDs - + Auto DRY - + Auto FCs - + Decimal Places - + Modbus Port - + Smooth2 - + Start PID on CHARGE - + Load Ramp/Soak table from profile - + Control Button - + Ratiometric - + Align FCs - + /min - + Alarm Popups - + Lock @@ -1108,112 +1108,112 @@ END 风扇 - + linear 扇线 - + newton 牛顿 - + metrics 度量 - + thermal 热力 - + cubic 立方体 - + nearest 最接近的 - + g - + Kg 千克 - + ml 毫升 - + l - + ET 环境温度 - + BT 豆温 - + upper right 右上 - + upper left 左上 - + lower left 左下 - + lower right 右下 - + right - + center left 中左 - + center right 中右 - + lower center 下中 - + upper center 上中 - + center 中间 @@ -1223,292 +1223,292 @@ END 30 秒 - + 1 minute 1 分钟 - + 2 minute 2 分钟 - + 3 minute 3 分钟 - + 4 minute 4 分钟 - + 5 minute 5 分钟 - + solid 实线 - + dashed 虚线 - + dashed-dot 虚线加点 - + dotted 点线 - + None 没有 - + Event #0 事件 #0 - + Event #%1 事件 #%1 - + lb - + liter - + gallon 加仑 - + quart 夸脱 - + pint 品脱 - + cup 杯葛 - + cm^3 立方厘米 - + Type 类型 - + Value 数值 - + Serial Command 串行 指令 - + Modbus Command Modbus 指令 - + DTA Command DTA 指令 - + Call Program 执行 程序 - + OFF - + ON - + Multiple Event 多个事件 - + DeltaBT 豆温差 - + DeltaET 环境温度差 - + SV Commands 温度设定指令 - + Ramp Commands 保持设定 指令 - + little-endian 小尾数 - + grey 灰色 - + Dark Grey 深灰 - + Slate Grey 石板灰 - + Light Gray 浅灰 - + Black - + White 白色 - + Transparent 透明 - + Flat - + Perpendicular 垂直 - + Radial 径向 - + START 开始 - + CHARGE 放豆进炉 - + TP 转折点 - + DRY END 脱水结束 - + FC START 一爆开始 - + FC END 一爆结束 - + SC START 二爆开始 - + SC END 二爆结束 - + DROP 下豆 - + COOL 冷却 - + below 下面 - + above 上面 - + Pop Up 跳出 - + Event Button 事件 按钮 - + Slider 滑雪者 @@ -1518,77 +1518,77 @@ END - + classic - + xkcd - + Default - + Humor - + Comic - + DRY - + FCs - + FCe - + SCs - + SCe - + COOL END 完成冷却 - + IO Command - + Hottop Heater - + Hottop Fan - + Hottop Command @@ -1659,12 +1659,12 @@ END 编辑文字 - + profiles 剖析 - + other 其他 @@ -1672,17 +1672,17 @@ END Error Message - + Exception: - + Value Error: - + IO Error: @@ -1692,137 +1692,137 @@ END - + Unable to move CHARGE to a value that does not exist - + Modbus Error: - + Serial Exception: - + F80h Error - + CRC16 data corruption ERROR. TX does not match RX. Check wiring - + No RX data received - + DTAcommand(): %1 bytes received but 15 needed - + Unable to open serial port - + HH806Wtemperature(): Unable to initiate device - + HH506RAGetID: %1 bytes received but 5 needed - + HH506RAtemperature(): Unable to get id from HH506RA device - + HH506RAtemperature(): %1 bytes received but 14 needed - + CENTER302temperature(): %1 bytes received but 7 needed - + CENTER303temperature(): %1 bytes received but 8 needed - + CENTER306temperature(): %1 bytes received but 10 needed - + CENTER309temperature(): %1 bytes received but 45 needed - + Arduino could not set channels - + Arduino could not set temperature unit - + Serial Exception: invalid comm port - + Serial Exception: timeout - + RampSoak could not be changed - + pid.readoneword(): %1 RX bytes received (7 needed) for unit ID=%2 - + Univariate: no profile data available - + Polyfit: no profile data available - + Segment values could not be written into PID - + MS6514temperature(): %1 bytes received but 16 needed - + HH806AUtemperature(): %1 bytes received but 16 needed @@ -1832,7 +1832,7 @@ END - + Arduino could not set filters @@ -1893,147 +1893,147 @@ END Form Caption - + Extras 附加功能 - + Roast Properties 烘焙特性 - + Artisan Platform Artisan 平台 - + Settings Viewer 设定检查 - + Serial Log 串行端口 记录 - + Error Log 故障 记录 - + Message History 信息 记录集 - + Keyboard Autosave [a] 键盘自动保存[a] - + AutoSave Path 自动保存文件路径 - + Axes - + Roast Calculator 烘焙 计算器 - + Events 事件 - + Roast Phases 烘焙 阶段 - + Cup Profile 杯测 剖析 - + Profile Background 剖析 背景 - + Statistics 统计 - + Designer Config 设计工具 配置 - + Manual Temperature Logger 用手操作的温度记录器 - + Serial Ports Configuration 串行端口 设定 - + Device Assignment 设备分配 - + Colors 颜色 - + Wheel Graph Editor 轮图编辑器械 - + Alarms 警报 - + Fuji PXR PID Control Fuji PXR PID 控制 - + Fuji PXG PID Control Fuji PXG PID 控制 - + Delta DTA PID Control Delta DTA PID 控制 - + Arduino Control - + Volume Calculator - + Tare Setup @@ -2041,257 +2041,257 @@ END GroupBox - + Curves 曲线 - + LCDs - + HUD 预测显示 - + Input Filters 输入过滤 - + Interpolate 内推 - + Univariate 单因素 - + Appearance 外貌 - + Resolution 分辨率 - + Sound 声音 - + Times 次数 - + Time Axis 时间轴 - + Temperature Axis 温度轴 - + DeltaBT/DeltaET Axis - + Legend Location - + Grid - + Rate of Change 改变率 - + Temperature Conversion 温度转换 - + Weight Conversion 重量转换 - + Volume Conversion 容量转换 - + Event Types 事件类型 - + Default Buttons 默认按钮 - + Management 管理 - + Evaluation 评估 - + Display 显出 - + Initial Settings 初始设置 - + Input 1 输入1 - + Input 2 输入2 - + Input 3 输入3 - + Input 4 输入4 - + PID - + Arduino TC4 - + External Program 外挂程式 - + Symbolic Assignments 象征性的分配 - + Timer LCD 计时器LCD - + ET LCD 环境温度LCD - + BT LCD 豆温LCD - + DeltaET LCD 环境温度差LCD - + DeltaBT LCD 豆温差LCD - + Extra Devices / PID SV LCD 额外设备/ PID 设值LCD - + Label Properties 标签属性 - + Polyfit - + Look - + Network - + p-i-d - + Set Value - + Phidget IO - + Phidgets 1045 - + Phidgets 1046 RTD - + WebLCDs - + Phidgets 1048/1051 - + Sampling @@ -2487,12 +2487,12 @@ END 度/分钟 - + ET 环境温度 - + BT 豆温 @@ -2507,42 +2507,42 @@ END 豆温差 - + at - + CHARGE 放豆进炉 - + DRY END 脱水结束 - + FC START 一爆开始 - + FC END 一爆结束 - + SC START 二爆开始 - + SC END 二爆结束 - + DROP 下豆 @@ -2577,7 +2577,7 @@ END 度/分钟 - + Time 时间 @@ -2612,32 +2612,32 @@ END 事件#<b>%1 </b> - + City 中度烘焙 - + City+ 中度+烘焙 - + Full City 深度烘焙 - + Full City+ 深度+烘焙 - + Light French 浅法式烘焙 - + French 法式烘焙 @@ -2647,7 +2647,7 @@ END %1 到达环境温度目标%2 - + at %1 @@ -2657,1028 +2657,1028 @@ END %1 到达豆温目标%2 - + %1 after FCs 一爆开始后%1 - + %1 after FCe 一爆结束后%1 - + ET - BT = %1 环境温度-豆温=%1 - + ET - BT = %1%2 环境温度-豆温=%1%2 - + ET Target 1 环境温度目标1 - + BT Target 1 豆温目标1 - + ET Target 2 环境温度目标2 - + BT Target 2 豆温目标1 - + Mode 模式 - + ET p-i-d 1 环境温度pid 1 - + Smooth Deltas - + Smooth Curves - + min 最小值 - + max 最大值 - + Y(x) - + COOL 冷却 - + Title 标题 - + Date 日期 - + Beans 豆名 - + Weight 重量 - + in 烘焙前 - + out 烘焙后 - + % - + Volume 容量 - + Density 密度 - + per - + Bean Size 豆大小 - + mm 毫米 - + Whole Color 咖啡豆颜色 - + Ground Color 咖啡粉颜色 - + Moisture Greens 贮存情况 - + % - + Ambient Conditions 环境情况 - + Roaster 烘焙机 - + Operator 烘焙师 - + Roasting Notes 烘焙笔记 - + Cupping Notes 杯测记录 - + Ambient Source - + (%1 g/l) - + Number of errors found %1 - + Max 最大值 - + Min 最小值 - + Rotation - + Initial Max - + Step - + Style 风格 - + Width - + Opaqueness - + Enter two times along profile - + Start (00:00) - + End (00:00) - + Fahrenheit 华氏 - + Celsius 摄氏 - + Time syntax error. Time not valid - + Error: End time smaller than Start time - + Best approximation was made from %1 to %2 - + No profile found - + Bars - + Color 颜色 - + Marker 标记 - + Thickness - + Opacity - + Size - + Max buttons per row - + Color Pattern - + palette # - + Event - + Action - + Command - + Offset - + Factor - + Drying - + Maillard - + Development - + Default - + Aspect Ratio - + ET Color - + BT Color - + DeltaET Color - + DeltaBT Color - + Text Warning - + sec - + Cooling - + Curviness - + Events Playback - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Settings for non-Modbus devices - + Slave - + Register - + Float - + Function - + Device - + Control ET - - Read BT + + /min - - Type - 类型 + + BackgroundXT + - - RS485 Unit ID + + ETBTa - - ET Channel + + RoR - - BT Channel + + MET - - AT Channel + + CM - - ET Y(x) + + BT %1 %2/min for %3 - - BT Y(x) + + ET %1 %2/min for %3 - - Ratio + + Curves - - Text - 文字 + + Delta Curves + - - Edge - + + TP + 转折点 - - Line + + DRY - - Color pattern + + FCs - - dg + + DRY% - - Enter description + + RAMP% - - Ramp Soak HH:MM<br>(1-4) + + DEV% - - Ramp Soak HH:MM<br>(5-8) + + Start recording - - Ramp/Soak Pattern + + Charge the beans - - WARNING + + /m - - Writing eeprom memory + + greens - - <u>Max life</u> 10,000 writes + + roasted - - Infinite read life. + + %1 to reach ET %2 - - After <u>writing</u> an adjustment,<br>never power down the pid<br>for the next 5 seconds <br>or the pid may never recover. + + %1 to reach BT %2 - - Read operations manual + + HUD Button - - ET Thermocouple type + + Window - - BT Thermocouple type + + Delta Span - - NOTE: BT Thermocouple type is not stored in the Artisan settings + + Path Effects - - Artisan uses 1 decimal point + + Font - - Ramp Soak (MM:SS)<br>(1-7) + + Start - - Ramp Soak (MM:SS)<br>(8-16) + + End - - Pattern + + Port - - SV (7-0) + + Unit - - Write - 写入 + + ml + 毫升 - - P + + Unit Weight - - I - + + g + - - D - + + Kg + 千克 - - Artisan Fuji PXG uses MINUTES:SECONDS units in Ramp/Soaks - + + l + - - SV - + + in + - - ETBTa + + out + + + + + Moisture Roasted - - RoR + + Density in: %1 g/l => Density out: %2 g/l - - Curves - 曲线 + + Moisture loss: %1% Organic loss: %2% + - - Delta Curves + + Prefix - - Start - 开始 + + <b>%1</b> %2/sec, <b>%3</b> %4/min + - - End - 结束 + + current palette + - - Path Effects + + Source - - Font + + Coarse - - TP - 转折点 + + ON + - - DRY - + + OFF + - - FCs + + XT Color - - Charge the beans + + XT - - Start recording - + + Type + 类型 - - Prefix + + Host - - Source + + Read BT - - CM + + RS485 Unit ID - - Window + + ET Channel - - Cycle + + BT Channel - - Lookahead + + AT Channel - - Manual + + Filter - - Ramp/Soak + + ET Y(x) - - Background - 背景 + + BT Y(x) + - - SV Buttons + + Async - - SV Slider + + Change - - Coarse + + Emissivity - - Host + + Gain - - Port + + Wiring - - HUD Button + + Rate - + Raw - + ServerId: - + Password: - - MET + + Ratio - - DRY% - + + Text + 文字 - - RAMP% + + Edge - - DEV% + + Line - - greens + + Color pattern - - roasted + + dg - - Moisture Roasted + + Enter description - - Density in: %1 g/l => Density out: %2 g/l + + Ramp Soak HH:MM<br>(1-4) - - /min + + Ramp Soak HH:MM<br>(5-8) - - BT %1 %2/min for %3 + + Ramp/Soak Pattern - - ET %1 %2/min for %3 + + WARNING - - /m + + Writing eeprom memory - - <b>%1</b> %2/sec, <b>%3</b> %4/min + + <u>Max life</u> 10,000 writes - - Async + + Infinite read life. - - Change + + After <u>writing</u> an adjustment,<br>never power down the pid<br>for the next 5 seconds <br>or the pid may never recover. - - Gain + + Read operations manual - - Rate + + NOTE: BT Thermocouple type is not stored in the Artisan settings - - Wiring + + Artisan uses 1 decimal point - - Delta Span + + ET Thermocouple type - - Unit + + BT Thermocouple type - - ml - 毫升 - - - - Unit Weight + + Ramp Soak (MM:SS)<br>(1-7) - - g - + + Ramp Soak (MM:SS)<br>(8-16) + - - Kg - 千克 + + Pattern + - - l - + + SV (7-0) + - - in - + + Write + 写入 - - out - + + P + - - Moisture loss: %1% Organic loss: %2% + + I - - Filter + + D - - Emissivity + + Artisan Fuji PXG uses MINUTES:SECONDS units in Ramp/Soaks - - ON - + + Cycle + - - OFF - + + SV + - - %1 to reach ET %2 + + Lookahead - - %1 to reach BT %2 + + Manual - - BackgroundXT + + Ramp/Soak - - XT Color - + + Background + 背景 - - XT + + SV Buttons - - current palette + + SV Slider @@ -3687,88 +3687,88 @@ END Services - 服务 + Hide %1 - 隐藏%1 + Hide Others - 隐藏其他 + Show All - 全部显示 + Preferences... - 偏好设置… + Quit %1 - 退出 %1 + About %1 - 关于 %1 + Marker - + Circle - 圆形 + - + Square - 正方 + - + Pentagon - 五角形 + - + Diamond - 菱形 + - + Star - 星形 + - + Hexagon 1 - 六角形1 + - + Hexagon 2 - 六角形2 + - + + - + x - + None 没有 @@ -3778,306 +3778,306 @@ END CSV... - + JSON... - + RoastLogger... - + HH506RA... - + K202... - + K204... - + File - 档案 + New - 新建 + Open... - 开启... + Open Recent - 最近开启的 + Import - 导入 + Save - 保存 + 保存 Save As... - 保存为... + Export - 导出 + Save Graph - 保存图表 + Full Size... - 全尺寸... + Roasting Report - 烘焙 报告 + Print... - 打印... + Edit - 编辑 + Cut - 剪切 + Copy - 复制 + Paste - 粘贴 + Roast - 烘焙 + Properties... - 特性... + Background... - 背景... + Cup Profile... - 杯测 剖析... + Temperature - 温度 + Convert to Fahrenheit - 转换为华氏 + Convert to Celsius - 转换为摄氏 + Fahrenheit Mode - 华氏 模式 + Celsius Mode - 摄氏 模式 + + + + + Switch Profiles + Config - 配置 + Device... - 设备... + Serial Port... - 串行端口... + Sampling Interval... - 采样 区间... + + + + + Oversampling + Colors... - 颜色... + Phases... - 阶段... + Events... - 事件... + Statistics... - 统计... + Axes... - 轴... + Autosave... - 自动保存... + Alarms... - 警报... + Language - 语言 + Tools - 工具 + Designer - 设计工具 + Calculator - 计算器 + Wheel Graph - 轮图 + + + + + LCDs + Extras... - 额外... + Help - 帮助 + 球助 + + + + About Qt + Documentation - 文档 + Keyboard Shortcuts - 快捷键 + Errors - 错误 + Messages - 信息 + Serial - 串行 + Settings - 设置 + Platform - 平台 + Factory Reset - 回复成出厂状态 - - - - About Qt - - - - - Switch Profiles - - - - - Oversampling - - - - - LCDs @@ -4093,6 +4093,11 @@ END HUD ON + + + Alarm %1 triggered + + Alarm notice @@ -4103,6 +4108,11 @@ END Alarm is calling: %1 + + + Calling alarm failed on %1 + + Alarm trigger button error, description '%1' not a number @@ -4223,14 +4233,19 @@ END Not enough variables collected yet. Try again in a few seconds + + + Scope is OFF + + Roast time starts now 00:00 BT = %1 - - Scope is OFF + + [TP] recorded at %1 BT = %2 @@ -4328,6 +4343,12 @@ END Designer Start + + + Importing a profile in to Designer will decimate all data except the main [points]. +Continue? + + Designer Init @@ -4380,7 +4401,7 @@ Profile missing [CHARGE] or [DROP] - + Open Wheel Graph @@ -4412,7 +4433,7 @@ Profile missing [CHARGE] or [DROP] Factory Reset - 回复成出厂状态 + @@ -4479,11 +4500,21 @@ Profile missing [CHARGE] or [DROP] <b>[t]</b> = Mouse cross lines + + + <b>[d]</b> = Toggle xy scale (T/Delta) + + <b>[b]</b> = Shows/Hides Extra Event Buttons + + + <b>[s]</b> = Shows/Hides Event Sliders + + <b>[i]</b> = Retrieve Weight In from Scale @@ -4509,11 +4540,26 @@ Profile missing [CHARGE] or [DROP] <b>[:]</b> = Desktop ScreenShot + + + <b>[q,w,e,r + <i>nn</i>]</b> = Quick Custom Event + + + + + <b>[f]</b> = Full Screen Mode + + Keyboard Shotcuts + + + Event #%1: %2 has been updated + + Save @@ -4525,7 +4571,7 @@ Profile missing [CHARGE] or [DROP] - + No profile found @@ -4539,6 +4585,11 @@ Profile missing [CHARGE] or [DROP] Invalid artisan format + + + %1 loaded + + Background %1 loaded successfully %2 @@ -4615,6 +4666,16 @@ Continue? Import RoastLogger + + + Warning + + + + + Oversampling is only active with a sampling interval equal or larger than 3s. + + Sampling Interval @@ -4626,1117 +4687,1051 @@ Continue? - + + A tight sampling interval might lead to instability on some machines. We suggest a minimum of 3s. + + + + + Hottop control turned off + + + + Alarm Config - + Alarms are not available for device None - + Switch Language - + Language successfully changed. Restart the application. - + Import K202 CSV - + K202 file loaded successfully - + Import K204 CSV - + K204 file loaded successfully - + Import HH506RA CSV - + HH506RA file loaded successfully - + Save Graph as PNG + + + %1 size(%2,%3) saved + + + Save Graph as PDF + + + + Save Graph as SVG - + %1 saved - + Invalid Wheel graph format - + Wheel Graph succesfully open - + Return the absolute value of x. - + Return the arc cosine (measured in radians) of x. - + Return the arc sine (measured in radians) of x. - + Return the arc tangent (measured in radians) of x. - + Return the cosine of x (measured in radians). - + Convert angle x from radians to degrees. - + Return e raised to the power of x. - + Return the logarithm of x to the given base. - + Return the base 10 logarithm of x. - Return x**y (x to the power of y). + Return the minimum of x and y. - Convert angle x from degrees to radians. + Return the maximum of x and y. - Return the sine of x (measured in radians). + Return x**y (x to the power of y). - Return the square root of x. + Convert angle x from degrees to radians. - Return the tangent of x (measured in radians). + Return the sine of x (measured in radians). - - MATHEMATICAL FUNCTIONS + + Return the square root of x. - - SYMBOLIC VARIABLES + + Return the tangent of x (measured in radians). - - Symbolic Functions + + ET value - - Save Palettes + + BT value - - Palettes saved + + Extra #1 T1 value - - Invalid palettes file format + + Extra #1 T2 value - - Palettes loaded + + Extra #2 T1 value - - Load Palettes - - - - - Alarms loaded - - - - - Interpolation failed: no profile available + + Extra #2 T2 value - - Sound turned ON + + current background ET - - Sound turned OFF + + current background BT - - [ET target 1 = %1] [BT target 1 = %2] [ET target 2 = %3] [BT target 2 = %4] + + Yn holds values sampled in the actual interval if refering to ET/BT or extra channels from devices listed before, otherwise Yn hold values sampled in the previous interval - - Event #%1 added + + MATHEMATICAL FUNCTIONS - - Event #%1 deleted + + SYMBOLIC VARIABLES - - No events found + + Symbolic Functions - - Roast properties updated but profile not saved to disk + + Save Palettes - - Autosave ON. Prefix: %1 + + Palettes saved - - Autosave OFF + + Invalid palettes file format - - xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) + + Palettes loaded - - <b>Event</b> hide or show the corresponding slider + + Load Palettes - - <b>Action</b> Perform an action on slider release + + Alarms loaded - - <b>Command</b> depends on the action type ('{}' is replaced by <i>value</i>*<i>factor</i> + <i>offset</i>) + + Interpolation failed: no profile available - - Serial Command: ASCII serial command or binary a2b_uu(serial command) + + Sound turned ON - - DTA Command: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating + + Sound turned OFF - - <b>Offset</b> added as offset to the slider value + + [ET target 1 = %1] [BT target 1 = %2] [ET target 2 = %3] [BT target 2 = %4] - - <b>Factor</b> multiplicator of the slider value + + Event #%1 added - - Event custom buttons + + Event #%1 deleted - - Event configuration saved + + No events found - - Found empty event type box + + Roast properties updated but profile not saved to disk - - <b>Button Label</b> Enter \n to create labels with multiple lines. + + Autosave ON. Prefix: %1 - - <b>Event Description</b> Description of the Event to be recorded. + + Autosave OFF - - <b>Event type</b> Type of event to be recorded. + + xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) - - <b>Action</b> Perform an action at the time of the event + + <b>Event</b> hide or show the corresponding slider - - <b>Documentation</b> depends on the action type ('{}' is replaced by the event value): + + <b>Action</b> Perform an action on slider release - - Call Program: A program/script path (absolute or relative) + + <b>Command</b> depends on the action type ('{}' is replaced by <i>value</i>*<i>factor</i> + <i>offset</i>) - Multiple Event: Adds events of other button numbers separated by a comma: 1,2,3, etc. - - - - - <b>Button Visibility</b> Hides/shows individual button - - - - - <b>Keyboard Shorcut: </b> [b] Hides/shows Extra Button Rows - - - - - Phases changed to %1 default: %2 + Serial Command: ASCII serial command or binary a2b_uu(serial command) - - Background profile not found + + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) or wcoils(slaveId,register,&lt;bool&gt;) writes values to the registers in slaves specified by the given ids - - Background does not match number of labels + + DTA Command: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating - - Playback Aid set ON at %1 secs + + <b>Offset</b> added as offset to the slider value - - No profile background found + + <b>Factor</b> multiplicator of the slider value - - Reading background profile... + + Event custom buttons - - Not enough time points for an ET curviness of %1. Set curviness to %2 + + Event configuration saved - - Designer Config - 设计工具配置 - - - - Not enough time points for an BT curviness of %1. Set curviness to %2 + + Found empty event type box - - CHARGE - 放豆进炉 - - - - DRY END - 脱水结束 - - - - FC START - 一爆开始 - - - - FC END - 一爆结束 - - - - SC START - 二爆开始 - - - - SC END - 二爆结束 - - - - DROP - 下豆 - - - - Incorrect time format. Please recheck %1 time + + <b>Button Label</b> Enter \n to create labels with multiple lines. - - Times need to be in ascending order. Please recheck %1 time + + <b>Event Description</b> Description of the Event to be recorded. - - Designer has been reset + + <b>Event type</b> Type of event to be recorded. - - Tick the Float flag in this case. + + <b>Event value</b> Value of event (1-100) to be recorded - - Serial Port Settings: %1, %2, %3, %4, %5, %6 + + <b>Action</b> Perform an action at the time of the event - - External program + + <b>Documentation</b> depends on the action type ('{}' is replaced by the event value): - - Device not set + + Call Program: A program/script path (absolute or relative) - - PID to control ET set to %1 %2 ; PID to read BT set to %3 %4 + + Multiple Event: Adds events of other button numbers separated by a comma: 1,2,3, etc. - - Device set to %1. Now, check Serial Port settings + + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) writes values to the registers in slaves specified by the given ids - - Device set to %1. Now, chose serial port + + IO Command: set(n,0), set(n,1), toggle(n) to set Phidget IO digital output n - - Device set to CENTER 305, which is equivalent to CENTER 306. Now, chose serial port + + <b>Button Visibility</b> Hides/shows individual button - - Device set to %1, which is equivalent to CENTER 309. Now, chose serial port + + <b>Keyboard Shorcut: </b> [b] Hides/shows Extra Button Rows - - Device set to %1, which is equivalent to CENTER 303. Now, chose serial port + + Phases changed to %1 default: %2 - - Device set to %1, which is equivalent to CENTER 306. Now, chose serial port + + Background profile not found - - Device set to %1, which is equivalent to Omega HH506RA. Now, chose serial port + + Background does not match number of labels - - Device set to %1, which is equivalent to Omega HH806AU. Now, chose serial port + + Playback Aid set ON at %1 secs - - Device set to %1 + + No profile background found - - Device set to %1%2 + + Reading background profile... - - Device set to %1, which is equivalent to CENTER 302. Now, chose serial port + + Phidget Temperature Sensor IR attached - - Color of %1 set to %2 + + Phidget Temperature Sensor IR detached - - Save Wheel graph + + Phidget Temperature Sensor 4-input attached - - Wheel Graph saved + + Phidget Temperature Sensor 4-input detached - - Load Alarms + + Phidget Bridge 4-input attached - - Save Alarms + + Phidget Bridge 4-input detached - - <b>Status:</b> activate or deactive alarm + + Phidget 1018 IO attached - - <b>If Alarm:</b> alarm triggered only if the alarm with the given number was triggered before. Use 0 for no guard. + + Phidget 1018 IO detached - - <b>From:</b> alarm only triggered after the given event + + Yocto Thermocouple attached - - <b>Time:</b> if not 00:00, alarm is triggered mm:ss after the event 'From' happend + + Yocto PT100 attached - - <b>Source:</b> the temperature source that is observed + + Not enough time points for an ET curviness of %1. Set curviness to %2 - - <b>Condition:</b> alarm is triggered if source rises above or below the specified temperature - + + Designer Config + 设计工具 配置 - - <b>Temp:</b> the speficied temperature limit + + Not enough time points for an BT curviness of %1. Set curviness to %2 - - <b>Action:</b> if all conditions are fulfilled the alarm triggeres the corresponding action - + + CHARGE + 放豆进炉 - - <b>NOTE:</b> each alarm is only triggered once - + + DRY END + 脱水结束 - - OFF - + + FC START + 一爆开始 - - CONTINUOUS CONTROL - + + FC END + 一爆结束 - - ON - + + SC START + 二爆开始 - - STANDBY MODE - + + SC END + 二爆结束 - - The rampsoak-mode tells how to start and end the ramp/soak - + + DROP + 下豆 - - Your rampsoak mode in this pid is: + + Incorrect time format. Please recheck %1 time - - Mode = %1 + + Times need to be in ascending order. Please recheck %1 time - - Start to run from PV value: %1 + + Designer has been reset - - End output status at the end of ramp/soak: %1 + + The MODBUS device corresponds to input channels - - Output status while ramp/soak operation set to OFF: %1 + + 1 and 2.. The MODBUS_34 extra device adds - - -Repeat Operation at the end: %1 + + input channels 3 and 4. Inputs with slave - - Recomended Mode = 0 + + id set to 0 are turned off. Modbus function 3 - - If you need to change it, change it now and come back later + + 'read holding register' is the standard. - - Use the Parameter Loader Software by Fuji if you need to - - + + Modbus function 4 triggers the use of 'read - - Continue? + + input register'. Input registers (fct 4) usually - - Current sv = %1. Change now to sv = %2? + + are from 30000-39999. Most devices hold data in - - Change svN + + 2 byte integer registers. A temperature of 145.2C - - Current pid = %1. Change now to pid =%2? + + is often sent as 1452. In that case you have to - - Ramp Soak start-end mode + + use the symbolic assignment 'x/10'. Few devices - - Pattern changed to %1 + + hold data as 4 byte floats in two registers. - - Pattern did not changed + + Tick the Float flag in this case. - - Ramp/Soak was found ON! Turn it off before changing the pattern + + Serial Port Settings: %1, %2, %3, %4, %5, %6 - - Ramp/Soak was found in Hold! Turn it off before changing the pattern + + External program - - Activate PID front buttons + + Device not set - - Remember SV memory has a finite -life of ~10,000 writes. - -Proceed? + + PID to control ET set to %1 %2 ; PID to read BT set to %3 %4 - - RS ON + + Device set to %1. Now, check Serial Port settings - - RS OFF + + Device set to %1. Now, chose serial port - - RS on HOLD + + Device set to CENTER 305, which is equivalent to CENTER 306. Now, chose serial port - - PXG sv#%1 set to %2 + + Device set to %1, which is equivalent to CENTER 309. Now, chose serial port - - PXR sv set to %1 + + Device set to %1, which is equivalent to CENTER 303. Now, chose serial port - - SV%1 changed from %2 to %3) + + Device set to %1, which is equivalent to CENTER 306. Now, chose serial port - - Unable to set sv%1 + + Device set to %1, which is equivalent to Omega HH506RA. Now, chose serial port - - SV changed from %1 to %2 + + Device set to %1, which is equivalent to Omega HH806AU. Now, chose serial port - - Unable to set sv + + Device set to %1 - - Unable to set new sv + + Device set to %1%2 - - Alarm %1 triggered + + Device set to %1. Now, chose Modbus serial port - - <b>[f]</b> = Full Screen Mode + + Device set to %1, which is equivalent to CENTER 302. Now, chose serial port - - Save Graph as PDF + + Color of %1 set to %2 - - Event #%1: %2 has been updated + + Save Wheel graph - - %1 loaded + + Wheel Graph saved - - %1 size(%2,%3) saved + + Load Alarms - - Phidget Temperature Sensor 4-input attached + + Save Alarms - - Phidget Bridge 4-input attached + + <b>Status:</b> activate or deactive alarm - - Device set to %1. Now, chose Modbus serial port + + <b>If Alarm:</b> alarm triggered only if the alarm with the given number was triggered before. Use 0 for no guard. - + <b>But Not:</b> alarm triggered only if the alarm with the given number was not triggered before. Use 0 for no guard. - - [TP] recorded at %1 BT = %2 - - - - - Importing a profile in to Designer will decimate all data except the main [points]. -Continue? - - - - - <b>Description:</b> the text of the popup, the name of the program, the number of the event button or the new value of the slider - - - - - Load PID Settings - - - - - Save PID Settings + + <b>From:</b> alarm only triggered after the given event - - Warning + + <b>Time:</b> if not 00:00, alarm is triggered mm:ss after the event 'From' happend - - A tight sampling interval might lead to instability on some machines. We suggest a minimum of 3s. + + <b>Source:</b> the temperature source that is observed - - Oversampling is only active with a sampling interval equal or larger than 3s. + + <b>Condition:</b> alarm is triggered if source rises above or below the specified temperature - - current background ET + + <b>Temp:</b> the speficied temperature limit - - current background BT + + <b>Action:</b> if all conditions are fulfilled the alarm triggeres the corresponding action - - <b>[d]</b> = Toggle xy scale (T/Delta) + + <b>Description:</b> the text of the popup, the name of the program, the number of the event button or the new value of the slider - - <b>[s]</b> = Shows/Hides Event Sliders + + <b>NOTE:</b> each alarm is only triggered once - - Phidget 1018 IO attached - + + OFF + - - Load Ramp/Soak Table + + CONTINUOUS CONTROL - - Save Ramp/Soak Table - + + ON + - - PID turned on + + STANDBY MODE - - PID turned off + + The rampsoak-mode tells how to start and end the ramp/soak - - <b>[q,w,e,r + <i>nn</i>]</b> = Quick Custom Event + + Your rampsoak mode in this pid is: - - Return the minimum of x and y. + + Mode = %1 - - Return the maximum of x and y. + + Start to run from PV value: %1 - - The MODBUS device corresponds to input channels + + End output status at the end of ramp/soak: %1 - - 1 and 2.. The MODBUS_34 extra device adds + + Output status while ramp/soak operation set to OFF: %1 - - input channels 3 and 4. Inputs with slave + + +Repeat Operation at the end: %1 - - id set to 0 are turned off. Modbus function 3 + + Recomended Mode = 0 - - 'read holding register' is the standard. + + If you need to change it, change it now and come back later - - Modbus function 4 triggers the use of 'read + + Use the Parameter Loader Software by Fuji if you need to + + - - 2 byte integer registers. A temperature of 145.2C + + Continue? - - is often sent as 1452. In that case you have to + + Ramp Soak start-end mode - - use the symbolic assignment 'x/10'. Few devices + + Load PID Settings - - hold data as 4 byte floats in two registers. + + Save PID Settings - - Yocto Thermocouple attached + + Current sv = %1. Change now to sv = %2? - - Yocto PT100 attached + + Change svN - - Calling alarm failed on %1 + + Current pid = %1. Change now to pid =%2? - - Phidget Temperature Sensor IR attached + + Pattern changed to %1 - - input register'. Input registers (fct 4) usually + + Pattern did not changed - - are from 30000-39999. Most devices hold data in + + Ramp/Soak was found ON! Turn it off before changing the pattern - - IO Command: set(n,0), set(n,1), toggle(n) to set Phidget IO digital output n + + Ramp/Soak was found in Hold! Turn it off before changing the pattern - - ET value + + Activate PID front buttons - - BT value + + Remember SV memory has a finite +life of ~10,000 writes. + +Proceed? - - Extra #1 T1 value + + RS ON - - Extra #1 T2 value + + RS OFF - - Extra #2 T1 value + + RS on HOLD - - Extra #2 T2 value + + PXG sv#%1 set to %2 - - Yn holds values sampled in the actual interval if refering to ET/BT or extra channels from devices listed before, otherwise Yn hold values sampled in the previous interval + + PXR sv set to %1 - - Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) writes values to the registers in slaves specified by the given ids + + SV%1 changed from %2 to %3) - - <b>Event value</b> Value of event (1-100) to be recorded + + Unable to set sv%1 - - Phidget Temperature Sensor IR detached + + SV changed from %1 to %2 - - Phidget Temperature Sensor 4-input detached + + Unable to set sv - - Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) or wcoils(slaveId,register,&lt;bool&gt;) writes values to the registers in slaves specified by the given ids + + Unable to set new sv - - Phidget Bridge 4-input detached + + Load Ramp/Soak Table - - Phidget 1018 IO detached + + Save Ramp/Soak Table - - Hottop control turned off + + PID turned on - - Hottop control turned on + + PID turned off Radio Button - + Meter - 仪表 + - + PID - + - - Program - 程式 + + TC4 + - - TC4 + + Program Scope Annotation - - Speed?? - 速度 + + Speed + @@ -5754,9 +5749,14 @@ Continue? 风扇 - - START 00:00 - 开始00:00 + + CHARGE + 放豆进炉 + + + + TP %1 + @@ -5766,36 +5766,26 @@ Continue? FCs %1 - 一爆开始%1 + FCe %1 - 一爆结束%1 + SCs %1 - 二爆开始%1 + SCe %1 - 二爆结束%1 - - - - END %1 - 完成%1 - - - - CE %1 - - Speed + + DROP %1 @@ -5804,971 +5794,959 @@ Continue? - - DROP %1 - - - - - TP %1 + + CE %1 - - - CHARGE - 放豆进炉 - Scope Title Roaster Scope - 烘焙记录仪 + StatusBar - + Playback Aid set OFF - + Ready - + Decimal position successfully set to 1 - + Problem setting decimal position - + Problem setting thermocouple type - + setting autotune... - + Autotune successfully turned OFF - + Autotune successfully turned ON - + wait... - + PID OFF - 关闭PID + 关闭 PID - + PID ON - 开启PID + 开启 PID - + SV successfully set to %1 - + Empty SV box - + Unable to read SV - + Ramp/Soak operation cancelled - + No RX data - + RS ON - + Need to change pattern mode... - + Pattern has been changed. Wait 5 secs. - + Pattern could not be changed - + RampSoak could not be changed - + RS OFF - + RS successfully turned OFF - + setONOFFrampsoak(): Ramp Soak could not be set OFF - + getsegment(): problem reading ramp - + getsegment(): problem reading soak - + + Reading Ramp/Soak %1 ... + + + + + problem reading Ramp/Soak + + + + Finished reading Ramp/Soak val. - + + Finished reading pid values + + + + + %1 successfully sent to pid + + + + setpid(): There was a problem setting %1 - + Ramp/Soak successfully written - + Time Units successfully set to MM:SS - + Problem setting time units - + Thermocouple type successfully set - + SV%1 set to %2 - + Problem setting SV - + Cancelled svN change - + PID already using sv%1 - + setNsv(): bad response - + + pid changed to %1 + + + + setNpid(): bad confirmation - + Cancelled pid change - + PID was already using pid %1 - + setNpid(): Unable to set pid %1 - + SV%1 successfully set to %2 - + setsv(): Unable to set SV - + pid #%1 successfully set to (%2,%3,%4) - + pid command failed. Bad data at pid%1 (8,8,8): (%2,%3,%4) - + + sending commands for p%1 i%2 d%3 + + + + + getallpid(): Unable to read pid values + + + + PID is using pid = %1 - + getallpid(): Unable to read current sv - + PID is using SV = %1 - + Ramp Soak could not be set OFF - + PID set to OFF - + PID set to ON - + Unable - + No data received - - Reading Ramp/Soak %1 ... - - - - - problem reading Ramp/Soak - - - - + Current pid = %1. Proceed with autotune command? - + Autotune cancelled - + UNABLE to set Autotune - + SV - + Ramp (MM:SS) - + Soak (MM:SS) - + Work in Progress - - - sending commands for p%1 i%2 d%3 - - - - - %1 successfully sent to pid - - - - - pid changed to %1 - - - - - getallpid(): Unable to read pid values - - - - - Finished reading pid values - - Tab - + + Graph + + + + HUD - 预测显示 + 预测显示 - + Plotter - 绘图工具 + - + Math - 计算 + - + UI - 用户界面 + - + General - 一般 + - + Notes - 笔记 + - + Events - 事件 + - + Data - 数据 + - + Config - 配置 + - + Buttons - 按键 + - + Sliders - 滑动介面 + + + + + Quantifiers + - + Palettes - 调色板 + - + Style - 风格 + + + + + Filter + + + + + Espresso + - + ET/BT - 环境温度/豆温 + - + Extra - 额外 + - + Modbus - + Scale - 额外 + + + + + Color + 颜色 - + Extra Devices - 额外 设备 + - + Symb ET/BT - 环境温度/豆温标记 + - - Graph - 图表 + + Phidgets + - + LCDs - + RS - + SV - + PID - + Set RS - - Color - 颜色 + + Ramp/Soak + + + + Table - - Quantifiers - + + DRY END + 脱水结束 - - Ramp/Soak - + + FC START + 一爆开始 - - Phidgets - + + FC END + 一爆结束 - - Filter - + + SC START + 二爆开始 - - Espresso - + + SC END + 二爆结束 + + + + DROP + 下豆 + + + + COOL + 冷却 + + + + Time + 时间 - - - Table - + ET 环境温度 - + BT 豆温 - - Time - 时间 + + DeltaET + 环境温度差 + + + + DeltaBT + 豆温差 + + + + CHARGE + 放豆进炉 + + + + EVENT #%2 %3%4 + - + Description - + Type 类型 - + Value 数值 - + + Name + + + + + Weight + + + + Label - + Action - + Documentation - 文档 + - + Visibility - + Color 颜色 - + Text Color - + + EVENT #%1 %2%3 + + + + Device - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Color 1 - + Color 2 - + Label 1 - + Label 2 - + y1(x) - + y2(x) - + LCD 1 - + LCD 2 - + Curve 1 - + Curve 2 - + Parent - + Width - + Opaqueness - + Delete Wheel - + Edit Labels - + Update Labels - + Properties - + Radius - + Starting angle - + Projection 预测 - + Text Size - + Color Pattern - + + Nr + + + + Status - + If Alarm - + + But Not + + + + From - + Source - + Condition - + Temp - + + Beep + + + + SV - + Ramp HH:MM - + Soak HH:MM - - - START - 开始 - - - - DRY END - 脱水结束 - - - - FC START - 一爆开始 - - - - FC END - 一爆结束 - - - - SC START - 二爆开始 - - - - SC END - 二爆结束 - - - - DROP - 下豆 - - - - COOL - 冷却 - - - - EVENT #%2 %3%4 - - - - - CHARGE - 放豆进炉 - - - - But Not - - - - - DeltaET - 环境温度差 - - - - DeltaBT - 豆温差 - - - - EVENT #%1 %2%3 - - - - - Beep - - - - - Name - - - - - Weight - - Textbox Acidity - 酸度 + Aftertaste - 回味 + Clean Cup - 干净度 + Head - + Fragrance - 干香 + Sweetness - 甜度 + Aroma - 湿香 + Balance - 平衡 + Body - 口感 + Sour - + Flavor - 味道 + Critical Stimulus - 关键刺激 + Bitter - + Astringency - 涩味 + Solubles Concentration - 可溶物含量 + Mouthfeel - 口感 + Other - 其他 + Aromatic Complexity - 芳香 -复杂性 + Roast Color - 烘焙 -颜色 + Aromatic Pungency - 刺鼻 + @@ -6778,97 +6756,97 @@ Pungency pH - 酸碱值 + Fragance - 香气 + Dry Fragrance - 干香 + Uniformity - 一致性 + Complexity - 复杂性 + Finish - 完成 + Brightness - 酸度 + Wet Aroma - 湿香 + Taste - 味道 + Nose - 嗅觉 + Fragrance-Aroma - 干香-湿香 + Flavour - 味道 + Roast Color - 烘焙颜色 + Crema Texture - 油脂质地 + Crema Volume - 油脂量 + Bitterness - 苦度 + Defects - 瑕疵 + Aroma Intensity - 湿香强度 + Aroma Persistence - 干香恃久度 + @@ -7034,206 +7012,206 @@ Pungency - + <b>Label</b>= - + <b>Description </b>= - + <b>Type </b>= - + <b>Value </b>= - + <b>Documentation </b>= - + <b>Button# </b>= - + Save image using current graph size to a png format - + linear: linear interpolation cubic: 3rd order spline interpolation nearest: y value of the nearest point - + ON/OFF logs serial communication - + Automatic generated name = This text + date + time - + ON/OFF of automatic saving when pressing keyboard letter [a] - + Sets the directory to store batch profiles when using the letter [a] - + Allows to enter a description of the last event - + Add new extra Event button - + Delete the last extra Event button - + Show help - + Backup all palettes to a text file - + + Restore all palettes from a text file + + + + Action Type - + Action String - + + Interval + + + + Aspect Ratio - + Example: 100 + 2*x - + Example: 100 + x - + Erases wheel parent hierarchy - + Sets graph hierarchy child->parent instead of parent->child - + Increase size of text in all the graph - + Decrease size of text in all the graph - + Decorative edge beween wheels - + Line thickness - + Line color - + Apply color pattern to whole graph - + Add new wheel - + Rotate graph 1 degree counter clockwise - + Rotate graph 1 degree clockwise - + Save graph to a text file.wg - + Sets Wheel graph to view mode - + open graph file.wg - + Close wheel graph editor - - Restore all palettes from a text file - - - - + Clear alarms table - - - Interval - - diff --git a/translations/artisan_zh_TW.ts b/translations/artisan_zh_TW.ts index b24ded99e..c04252d61 100644 --- a/translations/artisan_zh_TW.ts +++ b/translations/artisan_zh_TW.ts @@ -137,7 +137,7 @@ END 完成冷卻 - + Update 更新 @@ -147,92 +147,92 @@ END PID 球助 - + OK - + Cancel 取消 - + Color 顏色 - + Plot 繪圖 - + Background 背景 - + Virtual Device 虛擬設備 - + Save Image 保存圖像 - + Help 球助 - + Info 資料 - + Set 設定 - + Defaults 默認 - + Order 排序 - + Add 增加 - + Delete 清除 - + in - + out - + Search 搜索 - + Path 路徑 @@ -247,57 +247,57 @@ END 從恢復 - + Save 保存 - + Load 讀入 - + Del 刪除 - + Align 對齊 - + Up - + Down - + Left - + Right - + Reset 重置 - + Close 關閉 - + Create 創建 @@ -307,352 +307,352 @@ END 端口掃描 - + Select 選擇 - + Grid - + Title 標題 - + Y Label Y 標籤 - + X Label X 標籤 - + Drying Phase 脫水階段 - + Maillard Phase 梅納反應階段 - + Development Phase 發展階段 - + Cooling Phase 冷卻階段 - + ET 環境溫度 - + BT 豆溫 - + DeltaET 環境溫度差 - + DeltaBT 豆溫差 - + Markers 標記 - + Text 文字 - + Watermarks 水印 - + C Lines C 线 - + Grey - + LED - + B/W 黑白 - + Reset Parents 重置上層 - + Reverse Hierarchy 倒轉階層 - + + - + - - + Line Color 線的顏色 - + < - + > - + Save File 保存檔案 - + Save Img 保存圖像 - + View Mode 唯讀模式 - + Open 開啟 - + Set Color 設定顏色 - + All On 開啟所有 - + All Off 關閉所有 - + Read Ra/So values 讀取 上升/保持 值 - + RampSoak ON 開啟 上升保持 - + RampSoak OFF 關閉 上升保持 - + PID OFF 關閉 PID - + PID ON 開啟 PID - + Write SV 寫入 SV - + SV Buttons ON 開啟 SV 按鍵 - + SV Buttons OFF 關閉 SV 按鍵 - + Read SV 讀取 SV - + Set p 設定 p - + Set i 設定 i - + Set d 設定 d - + Autotune ON 啟動 自動調教 - + Autotune OFF 關閉 自動調教 - + Read PID Values 讀取 PID 值 - + Read 讀取 - + Set ET PID to 1 decimal point 設定 PID 環境溫度 至1個小數位 - + Set BT PID to 1 decimal point 設定 PID 豆溫 至1個小數位 - + Read RS values 讀取 上升/保持 值 - + Write SV1 寫入 SV1 - + Write SV2 寫入 SV2 - + Write SV3 寫入 SV3 - + Write SV4 寫入 SV4 - + Write SV5 寫入 SV5 - + Write SV6 寫入 SV6 - + Write SV7 寫入 SV7 - + ON SV buttons 開啟 SV 按鍵 - + OFF SV buttons 關閉 SV 按鍵 - + Read SV (7-0) 讀取 SV (7-0) - + pid 1 - + pid 2 - + pid 3 - + pid 4 - + pid 5 - + pid 6 - + pid 7 @@ -662,87 +662,87 @@ END 讀取所有 - + Set ET PID to MM:SS time units 設定 PID 環境溫度 時間單位至MM:SS - + Write 寫入 - + Insert - + Clear - + scan - + Write All - + Write RS values - + Write SV (7-0) - + Read PIDs - + Write PIDs - + Apply - + On - + Off - + calc - + unit - + << - + >> @@ -750,122 +750,122 @@ END CheckBox - + Heavy FC 較強一爆 - + Low FC 較弱一爆 - + Light Cut 豆中線有銀皮 - + Dark Cut 豆中線沒有銀皮 - + Drops 油滴 - + Oily 豆面有油 - + Uneven 不平均 - + Tipping 豆有烘燋圓點  - + Scorching 豆有燋化現象 - + Divots 豆面有小孔 - + DeltaET 環境溫度差 - + DeltaBT 豆溫差 - + Smooth Spikes 雜訊過濾 - + Drop Spikes 下豆識別 - + Limits 範圍 - + Projection 预测 - + Show 顯示 - + Beep - + Delete roast properties on RESET 重置時 刪除 烘焙特性 - + Serial Log ON/OFF 串行記錄 開/關 - + Autosave [a] 自動保存[a] - + Lock Max - + Button 按鍵 - + Mini Editor 小型 編輯工具 @@ -875,197 +875,197 @@ END 自動檢測 放豆進爐/下豆 時間 - + CHARGE 放豆進爐 - + DRY END 脫水結束 - + FC START 一爆開始 - + FC END 一爆結束 - + SC START 二爆開始 - + SC END 二爆結束 - + DROP 下豆 - + COOL END 完成冷卻 - + Auto Adjusted 放豆進爐 - + Watermarks 水印 - + Background 背景 - + Text 文字 - + Events 活动 - + Playback Aid 重播援助 - + Time 時間 - + Bar - + ETBTa - + Evaluation 評估 - + Characteristics 特性 - + ET 環境溫度 - + BT 豆溫 - + Load alarms from profile - + Auto CHARGE - + Auto DROP - + Mark TP - + Phases LCDs - + Auto DRY - + Auto FCs - + Decimal Places - + Modbus Port - + Smooth2 - + Start PID on CHARGE - + Load Ramp/Soak table from profile - + Control Button - + Ratiometric - + Align FCs - + /min - + Alarm Popups - + Lock @@ -1093,112 +1093,112 @@ END 風扇 - + linear 扇線 - + newton 牛頓 - + metrics 度量 - + thermal 熱力 - + cubic 立方體 - + nearest 最接近的 - + g - + Kg 千克 - + ml 毫升 - + l - + ET 環境溫度 - + BT 豆溫 - + upper right 右上 - + upper left 左上 - + lower left 左下 - + lower right 右下 - + right - + center left 中左 - + center right 中右 - + lower center 下中 - + upper center 上中 - + center 中間 @@ -1208,367 +1208,367 @@ END 30 秒 - + 1 minute 1 分鐘 - + 2 minute 2 分鐘 - + 3 minute 3 分鐘 - + 4 minute 4 分鐘 - + 5 minute 5 分鐘 - + solid 實線 - + dashed 虛線 - + dashed-dot 虛線加點 - + dotted 點線 - + None 沒有 - + Event #0 事件 #0 - + Event #%1 事件 #%1 - + lb - + liter - + gallon 加侖 - + quart 夸脫 - + pint 品脫 - + cup 杯葛 - + cm^3 立方厘米 - + Type 類型 - + Value 數值 - + Serial Command 串行 指令 - + Modbus Command Modbus 指令 - + DTA Command DTA 指令 - + Call Program 執行 程序 - + OFF - + ON - + Multiple Event 多個事件 - + DeltaBT 豆溫差 - + DeltaET 環境溫度差 - + SV Commands 溫度設定指令 - + Ramp Commands 保持設定 指令 - + little-endian 小尾數 - + grey 灰色 - + Dark Grey 深灰 - + Slate Grey 石板灰 - + Light Gray 淺灰 - + Black - + White 白色 - + Transparent 透明 - + Flat - + Perpendicular 垂直 - + Radial 徑向 - + START 開始 - + CHARGE 放豆進爐 - + TP 转折点 - + DRY END 脫水結束 - + FC START 一爆開始 - + FC END 一爆結束 - + SC START 二爆開始 - + SC END 二爆結束 - + DROP 下豆 - + COOL 冷卻 - + below 下面 - + above 上面 - + Pop Up 跳出 - + Event Button 事件 按鈕 - + Slider 滑雪者 - + classic - + xkcd - + Default - + Humor - + Comic - + DRY - + FCs - + FCe - + SCs - + SCe - + COOL END 完成冷卻 - + IO Command - + Hottop Heater - + Hottop Fan - + Hottop Command @@ -1639,12 +1639,12 @@ END 編輯文字 - + profiles 剖析 - + other 其他 @@ -1652,17 +1652,17 @@ END Error Message - + Exception: - + Value Error: - + IO Error: @@ -1672,137 +1672,137 @@ END - + Unable to move CHARGE to a value that does not exist - + Modbus Error: - + Serial Exception: - + F80h Error - + CRC16 data corruption ERROR. TX does not match RX. Check wiring - + No RX data received - + DTAcommand(): %1 bytes received but 15 needed - + Unable to open serial port - + HH806Wtemperature(): Unable to initiate device - + HH506RAGetID: %1 bytes received but 5 needed - + HH506RAtemperature(): Unable to get id from HH506RA device - + HH506RAtemperature(): %1 bytes received but 14 needed - + CENTER302temperature(): %1 bytes received but 7 needed - + CENTER303temperature(): %1 bytes received but 8 needed - + CENTER306temperature(): %1 bytes received but 10 needed - + CENTER309temperature(): %1 bytes received but 45 needed - + Arduino could not set channels - + Arduino could not set temperature unit - + Serial Exception: invalid comm port - + Serial Exception: timeout - + Segment values could not be written into PID - + RampSoak could not be changed - + pid.readoneword(): %1 RX bytes received (7 needed) for unit ID=%2 - + Univariate: no profile data available - + Polyfit: no profile data available - + MS6514temperature(): %1 bytes received but 16 needed - + HH806AUtemperature(): %1 bytes received but 16 needed @@ -1812,7 +1812,7 @@ END - + Arduino could not set filters @@ -1873,147 +1873,147 @@ END Form Caption - + Extras 附加功能 - + Roast Properties 烘焙特性 - + Artisan Platform Artisan 平台 - + Settings Viewer 設定檢查 - + Serial Log 串行端口 記錄 - + Error Log 故障 記錄 - + Message History 信息 記錄集 - + Keyboard Autosave [a] 鍵盤 自動保存 [a] - + AutoSave Path 自動保存 文件路徑 - + Axes - + Roast Calculator 烘焙 計算器 - + Events 事件 - + Roast Phases 烘焙 階段 - + Cup Profile 杯測 剖析 - + Profile Background 剖析 背景 - + Statistics 統計 - + Designer Config 設計工具 配置 - + Manual Temperature Logger 用手操作的溫度記錄器 - + Serial Ports Configuration 串行端口 設定 - + Device Assignment 設備分配 - + Colors 顏色 - + Wheel Graph Editor 輪圖編輯器械 - + Alarms 警報 - + Fuji PXR PID Control Fuji PXR PID 控制 - + Fuji PXG PID Control Fuji PXG PID 控制 - + Delta DTA PID Control Delta DTA PID 控制 - + Arduino Control - + Volume Calculator - + Tare Setup @@ -2021,257 +2021,257 @@ END GroupBox - + Curves 曲線 - + LCDs - + HUD 預測顯示 - + Input Filters 輸入過濾 - + Interpolate 內推 - + Univariate 單因素 - + Appearance 外貌 - + Resolution 分辨率 - + Sound 聲音 - + Times 次數 - + Time Axis 時間軸 - + Temperature Axis 溫度軸 - + DeltaBT/DeltaET Axis - + Legend Location - + Grid - + Rate of Change 改變率 - + Temperature Conversion 溫度轉換 - + Weight Conversion 重量轉換 - + Volume Conversion 容量轉換 - + Event Types 事件類型 - + Default Buttons 默認按鈕 - + Management 管理 - + Evaluation 評估 - + Display 顯出 - + Initial Settings 初始設置 - + Input 1 輸入 1 - + Input 2 輸入 2 - + Input 3 輸入 3 - + Input 4 輸入 4 - + PID - + Arduino TC4 - + External Program 外掛程式 - + Symbolic Assignments 象徵性的分配 - + Timer LCD 計時器 LCD - + ET LCD 環境溫度 LCD - + BT LCD 豆溫 LCD - + DeltaET LCD 環境溫度差 LCD - + DeltaBT LCD 豆溫差 LCD - + Extra Devices / PID SV LCD 額外 設備 / PID 設值 LCD - + Label Properties 標籤 屬性 - + Polyfit - + Look - + Network - + p-i-d - + Set Value - + Phidget IO - + Phidgets 1045 - + Phidgets 1046 RTD - + WebLCDs - + Phidgets 1048/1051 - + Sampling @@ -2467,12 +2467,12 @@ END 度/分鐘 - + ET 環境溫度 - + BT 豆溫 @@ -2487,42 +2487,42 @@ END 豆溫差 - + at - + CHARGE 放豆進爐 - + DRY END 脫水結束 - + FC START 一爆開始 - + FC END 一爆結束 - + SC START 二爆開始 - + SC END 二爆結束 - + DROP 下豆 @@ -2557,7 +2557,7 @@ END 度/分鐘 - + Time 時間 @@ -2592,32 +2592,32 @@ END 事件 #<b>%1 </b> - + City 中度烘焙 - + City+ 中度+烘焙 - + Full City 深度烘焙 - + Full City+ 深度+烘焙 - + Light French 淺法式烘焙 - + French 法式烘焙 @@ -2627,7 +2627,7 @@ END %1 到達環境溫度目標 %2 - + at %1 @@ -2637,637 +2637,637 @@ END %1 到達豆溫目標 %2 - + %1 after FCs 一爆開始後 %1 - + %1 after FCe 一爆結束後 %1 - + ET - BT = %1 環境溫度-豆溫 =%1 - + ET - BT = %1%2 環境溫度-豆溫 =%1%2 - + ET Target 1 環境溫度 目標1 - + BT Target 1 豆溫 目標1 - + ET Target 2 環境溫度 目標2 - + BT Target 2 豆溫 目標1 - + Mode 模式 - + ET p-i-d 1 環境溫度 p-i-d 1 - + Smooth Deltas - + Smooth Curves - + min 最小值 - + max 最大值 - + Y(x) - + COOL 冷卻 - + Title 標題 - + Date 日期 - + Beans 豆名 - + Weight 重量 - + in 烘焙前 - + out 烘焙後 - + % - + Volume 容量 - + Density 密度 - + per - + Bean Size 豆大小 - + mm 毫米 - + Whole Color 咖啡豆顏色 - + Ground Color 咖啡粉顏色 - + Moisture Greens 貯存情況 - + % - + Ambient Conditions 環境情況 - + Roaster 烘焙機 - + Operator 烘焙師 - + Roasting Notes 烘焙筆記 - + Cupping Notes 杯測記錄 - + Ambient Source - + (%1 g/l) - + Number of errors found %1 - + Max 最大值 - + Min 最小值 - + Rotation - + Initial Max - + Step - + Style 風格 - + Width - + Opaqueness - + Enter two times along profile - + Start (00:00) - + End (00:00) - + Fahrenheit 華氏 - + Celsius 攝氏 - + Time syntax error. Time not valid - + Error: End time smaller than Start time - + Best approximation was made from %1 to %2 - + No profile found - + Bars - + Color 顏色 - + Marker 標記 - + Thickness - + Opacity - + Size - + Max buttons per row - + Color Pattern - + palette # - + Event - + Action - + Command - + Offset - + Factor - + Drying - + Maillard - + Development - + Default - + Aspect Ratio - + ET Color - + BT Color - + DeltaET Color - + DeltaBT Color - + Text Warning - + sec - + Cooling - + Curviness - + Events Playback - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Settings for non-Modbus devices - + Slave - + Register - + Float - + Function - + Device - + Control ET - + Read BT - + Type 類型 - + RS485 Unit ID - + ET Channel - + BT Channel - + AT Channel - + ET Y(x) - + BT Y(x) - + Ratio - + Text 文字 - + Edge - + Line - + Color pattern - + dg - + Enter description - + Ramp Soak HH:MM<br>(1-4) - + Ramp Soak HH:MM<br>(5-8) - + Ramp/Soak Pattern - + WARNING - + Writing eeprom memory - + <u>Max life</u> 10,000 writes - + Infinite read life. - + After <u>writing</u> an adjustment,<br>never power down the pid<br>for the next 5 seconds <br>or the pid may never recover. - + Read operations manual - + ET Thermocouple type - + BT Thermocouple type - + NOTE: BT Thermocouple type is not stored in the Artisan settings - + Artisan uses 1 decimal point - + Ramp Soak (MM:SS)<br>(1-7) @@ -3372,272 +3372,272 @@ END - + HUD Button - + Window - + Path Effects - + Font - + Start - + End - + Moisture Roasted - + Density in: %1 g/l => Density out: %2 g/l - + Prefix - + <b>%1</b> %2/sec, <b>%3</b> %4/min - + Source - + Coarse - + Host - + Port - + Async - + Change - + Gain - + Wiring - + Rate - + Raw - + ServerId: - + Password: - + Ramp Soak (MM:SS)<br>(8-16) - + Pattern - + SV (7-0) - + Write 寫入 - + P - + I - + D - + Artisan Fuji PXG uses MINUTES:SECONDS units in Ramp/Soaks - + Cycle - + SV - + Lookahead - + Manual - + Ramp/Soak - + Background 背景 - + SV Buttons - + SV Slider - + Delta Span - + Unit - + ml 毫升 - + Unit Weight - + g - + Kg 千克 - + l - + in - + out - + Moisture loss: %1% Organic loss: %2% - + Filter - + Emissivity - + ON - + OFF - + %1 to reach ET %2 - + %1 to reach BT %2 @@ -3647,17 +3647,17 @@ END - + XT Color - + XT - + current palette @@ -3703,52 +3703,52 @@ END Marker - + Circle - + Square - + Pentagon - + Diamond - + Star - + Hexagon 1 - + Hexagon 2 - + + - + x - + None 沒有 @@ -4381,7 +4381,7 @@ Profile missing [CHARGE] or [DROP] - + Open Wheel Graph @@ -4551,7 +4551,7 @@ Profile missing [CHARGE] or [DROP] - + No profile found @@ -4672,865 +4672,865 @@ Continue? - + Alarm Config - + Alarms are not available for device None - + Switch Language - + Language successfully changed. Restart the application. - + Import K202 CSV - + K202 file loaded successfully - + Import K204 CSV - + K204 file loaded successfully - + Import HH506RA CSV - + HH506RA file loaded successfully - + Save Graph as PNG - + %1 size(%2,%3) saved - + Save Graph as PDF - + Save Graph as SVG - + %1 saved - + Invalid Wheel graph format - + Wheel Graph succesfully open - + Return the absolute value of x. - + Return the arc cosine (measured in radians) of x. - + Return the arc sine (measured in radians) of x. - + Return the arc tangent (measured in radians) of x. - + Return the cosine of x (measured in radians). - + Convert angle x from radians to degrees. - + Return e raised to the power of x. - + Return the logarithm of x to the given base. - + Return the base 10 logarithm of x. - + Return the minimum of x and y. - + Return the maximum of x and y. - + Return x**y (x to the power of y). - + Convert angle x from degrees to radians. - + Return the sine of x (measured in radians). - + Return the square root of x. - + Return the tangent of x (measured in radians). - + current background ET - + current background BT - + MATHEMATICAL FUNCTIONS - + SYMBOLIC VARIABLES - + Symbolic Functions - + Save Palettes - + Palettes saved - + Invalid palettes file format - + Palettes loaded - + Load Palettes - + Alarms loaded - + Interpolation failed: no profile available - + Sound turned ON - + Sound turned OFF - + [ET target 1 = %1] [BT target 1 = %2] [ET target 2 = %3] [BT target 2 = %4] - + Event #%1 added - + Event #%1 deleted - + No events found - + Roast properties updated but profile not saved to disk - + Autosave ON. Prefix: %1 - + Autosave OFF - + xlimit = (%3,%4) ylimit = (%1,%2) zlimit = (%5,%6) - + <b>Event</b> hide or show the corresponding slider - + <b>Action</b> Perform an action on slider release - + <b>Command</b> depends on the action type ('{}' is replaced by <i>value</i>*<i>factor</i> + <i>offset</i>) - + Serial Command: ASCII serial command or binary a2b_uu(serial command) - + DTA Command: Insert Data address : value, ex. 4701:1000 and sv is 100. always multiply with 10 if value Unit: 0.1 / ex. 4719:0 stops heating - + <b>Offset</b> added as offset to the slider value - + <b>Factor</b> multiplicator of the slider value - + Event custom buttons - + Event configuration saved - + Found empty event type box - + <b>Button Label</b> Enter \n to create labels with multiple lines. - + <b>Event Description</b> Description of the Event to be recorded. - + <b>Event type</b> Type of event to be recorded. - + <b>Action</b> Perform an action at the time of the event - + <b>Documentation</b> depends on the action type ('{}' is replaced by the event value): - + Call Program: A program/script path (absolute or relative) - + Multiple Event: Adds events of other button numbers separated by a comma: 1,2,3, etc. - + IO Command: set(n,0), set(n,1), toggle(n) to set Phidget IO digital output n - + <b>Button Visibility</b> Hides/shows individual button - + <b>Keyboard Shorcut: </b> [b] Hides/shows Extra Button Rows - + Phases changed to %1 default: %2 - + Background profile not found - + Background does not match number of labels - + Playback Aid set ON at %1 secs - + No profile background found - + Reading background profile... - + Phidget Temperature Sensor IR attached - + Phidget Temperature Sensor 4-input attached - + Phidget Bridge 4-input attached - + Phidget 1018 IO attached - + Yocto Thermocouple attached - + Yocto PT100 attached - + Not enough time points for an ET curviness of %1. Set curviness to %2 - + Designer Config 設計工具 配置 - + Not enough time points for an BT curviness of %1. Set curviness to %2 - + CHARGE 放豆進爐 - + DRY END 脫水結束 - + FC START 一爆開始 - + FC END 一爆結束 - + SC START 二爆開始 - + SC END 二爆結束 - + DROP 下豆 - + Incorrect time format. Please recheck %1 time - + Times need to be in ascending order. Please recheck %1 time - + Designer has been reset - + The MODBUS device corresponds to input channels - + 1 and 2.. The MODBUS_34 extra device adds - + input channels 3 and 4. Inputs with slave - + id set to 0 are turned off. Modbus function 3 - + 'read holding register' is the standard. - + Modbus function 4 triggers the use of 'read - + input register'. Input registers (fct 4) usually - + are from 30000-39999. Most devices hold data in - + 2 byte integer registers. A temperature of 145.2C - + is often sent as 1452. In that case you have to - + use the symbolic assignment 'x/10'. Few devices - + hold data as 4 byte floats in two registers. - + Tick the Float flag in this case. - + Serial Port Settings: %1, %2, %3, %4, %5, %6 - + External program - + Device not set - + PID to control ET set to %1 %2 ; PID to read BT set to %3 %4 - + Device set to %1. Now, check Serial Port settings - + Device set to %1. Now, chose serial port - + Device set to CENTER 305, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 309. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 303. Now, chose serial port - + Device set to %1, which is equivalent to CENTER 306. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH506RA. Now, chose serial port - + Device set to %1, which is equivalent to Omega HH806AU. Now, chose serial port - + Device set to %1 - + Device set to %1%2 - + Device set to %1. Now, chose Modbus serial port - + Device set to %1, which is equivalent to CENTER 302. Now, chose serial port - + Color of %1 set to %2 - + Save Wheel graph - + Wheel Graph saved - + Load Alarms - + Save Alarms - + <b>Status:</b> activate or deactive alarm - + <b>If Alarm:</b> alarm triggered only if the alarm with the given number was triggered before. Use 0 for no guard. - + <b>But Not:</b> alarm triggered only if the alarm with the given number was not triggered before. Use 0 for no guard. - + <b>From:</b> alarm only triggered after the given event - + <b>Time:</b> if not 00:00, alarm is triggered mm:ss after the event 'From' happend - + <b>Source:</b> the temperature source that is observed - + <b>Condition:</b> alarm is triggered if source rises above or below the specified temperature - + <b>Temp:</b> the speficied temperature limit - + <b>Action:</b> if all conditions are fulfilled the alarm triggeres the corresponding action - + <b>Description:</b> the text of the popup, the name of the program, the number of the event button or the new value of the slider - + <b>NOTE:</b> each alarm is only triggered once - + OFF - + CONTINUOUS CONTROL - + ON - + STANDBY MODE - + The rampsoak-mode tells how to start and end the ramp/soak - + Your rampsoak mode in this pid is: - + Mode = %1 - + Start to run from PV value: %1 - + End output status at the end of ramp/soak: %1 - + Output status while ramp/soak operation set to OFF: %1 - + Repeat Operation at the end: %1 - + Recomended Mode = 0 - + If you need to change it, change it now and come back later - + Use the Parameter Loader Software by Fuji if you need to - + Continue? - + Load PID Settings - + Save PID Settings - + Current sv = %1. Change now to sv = %2? - + Change svN - + Current pid = %1. Change now to pid =%2? - + Ramp Soak start-end mode - + Pattern changed to %1 - + Pattern did not changed - + Ramp/Soak was found ON! Turn it off before changing the pattern - + Ramp/Soak was found in Hold! Turn it off before changing the pattern - + Activate PID front buttons - + Remember SV memory has a finite life of ~10,000 writes. @@ -5538,142 +5538,142 @@ Proceed? - + RS ON - + RS OFF - + RS on HOLD - + PXG sv#%1 set to %2 - + PXR sv set to %1 - + SV%1 changed from %2 to %3) - + Unable to set sv%1 - + SV changed from %1 to %2 - + Unable to set sv - + Unable to set new sv - + Load Ramp/Soak Table - + Save Ramp/Soak Table - + PID turned on - + PID turned off - + ET value - + BT value - + Extra #1 T1 value - + Extra #1 T2 value - + Extra #2 T1 value - + Extra #2 T2 value - + Yn holds values sampled in the actual interval if refering to ET/BT or extra channels from devices listed before, otherwise Yn hold values sampled in the previous interval - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) writes values to the registers in slaves specified by the given ids - + <b>Event value</b> Value of event (1-100) to be recorded - + Phidget Temperature Sensor IR detached - + Phidget Temperature Sensor 4-input detached - + Modbus Command: write([slaveId,register,value],..,[slaveId,register,value]) or wcoils(slaveId,register,[&lt;bool&gt;,..,&lt;bool&gt;]) or wcoils(slaveId,register,&lt;bool&gt;) writes values to the registers in slaves specified by the given ids - + Phidget Bridge 4-input detached - + Phidget 1018 IO detached @@ -5682,31 +5682,26 @@ Proceed? Hottop control turned off - - - Hottop control turned on - - Radio Button - + Meter - + PID - + TC4 - + Program @@ -5795,337 +5790,337 @@ Proceed? StatusBar - + Playback Aid set OFF - + Ready - + Decimal position successfully set to 1 - + Problem setting decimal position - + Problem setting thermocouple type - + setting autotune... - + Autotune successfully turned OFF - + Autotune successfully turned ON - + wait... - + PID OFF 關閉 PID - + PID ON 開啟 PID - + SV successfully set to %1 - + Empty SV box - + Unable to read SV - + Ramp/Soak operation cancelled - + No RX data - + RS ON - + Need to change pattern mode... - + Pattern has been changed. Wait 5 secs. - + Pattern could not be changed - + RampSoak could not be changed - + RS OFF - + RS successfully turned OFF - + setONOFFrampsoak(): Ramp Soak could not be set OFF - + getsegment(): problem reading ramp - + getsegment(): problem reading soak - + Reading Ramp/Soak %1 ... - + problem reading Ramp/Soak - + Finished reading Ramp/Soak val. - + Finished reading pid values - + %1 successfully sent to pid - + setpid(): There was a problem setting %1 - + Ramp/Soak successfully written - + Time Units successfully set to MM:SS - + Problem setting time units - + Thermocouple type successfully set - + SV%1 set to %2 - + Problem setting SV - + Cancelled svN change - + PID already using sv%1 - + setNsv(): bad response - + pid changed to %1 - + setNpid(): bad confirmation - + Cancelled pid change - + PID was already using pid %1 - + setNpid(): Unable to set pid %1 - + SV%1 successfully set to %2 - + setsv(): Unable to set SV - + pid #%1 successfully set to (%2,%3,%4) - + pid command failed. Bad data at pid%1 (8,8,8): (%2,%3,%4) - + sending commands for p%1 i%2 d%3 - + getallpid(): Unable to read pid values - + PID is using pid = %1 - + getallpid(): Unable to read current sv - + PID is using SV = %1 - + Ramp Soak could not be set OFF - + PID set to OFF - + PID set to ON - + Unable - + No data received - + Current pid = %1. Proceed with autotune command? - + Autotune cancelled - + UNABLE to set Autotune - + SV - + Ramp (MM:SS) - + Soak (MM:SS) - + Work in Progress @@ -6133,157 +6128,157 @@ Proceed? Tab - + Graph - + HUD 預測顯示 - + Plotter - + Math - + UI - + General - + Notes - + Events - + Data - + Config - + Buttons - + Sliders - + Quantifiers - + Palettes - + Style - + ET/BT - + Extra - + Modbus - + Scale - + Color 顏色 - + Extra Devices - + Symb ET/BT - + Phidgets - + LCDs - + RS - + SV - + PID - + Set RS - + Ramp/Soak - + Filter - + Espresso @@ -6291,335 +6286,340 @@ Proceed? Table - + DRY END 脫水結束 - + FC START 一爆開始 - + FC END 一爆結束 - + SC START 二爆開始 - + SC END 二爆結束 - + DROP 下豆 - + COOL 冷卻 - + Time 時間 - + ET 環境溫度 - + BT 豆溫 - + DeltaET 環境溫度差 - + DeltaBT 豆溫差 - + CHARGE 放豆進爐 - + EVENT #%2 %3%4 - + Description - + Type 類型 - + Value 數值 - + Label - + Action - + Documentation - + Visibility - + Color 顏色 - + Text Color - + EVENT #%1 %2%3 - + Device - + Comm Port - + Baud Rate - + Byte Size - + Parity - + Stopbits - + Timeout - + Color 1 - + Color 2 - + Label 1 - + Label 2 - + y1(x) - + y2(x) - + LCD 1 - + LCD 2 - + Curve 1 - + Curve 2 - + Parent - + Width - + Opaqueness - + Delete Wheel - + Edit Labels - + Update Labels - + Properties - + Radius - + Starting angle - + Projection 预测 - + Text Size - + Color Pattern - + Status - + If Alarm - + But Not - + From - + Source - + Condition - + Temp - + Beep - + SV - + Ramp HH:MM - + Soak HH:MM - + Name - + Weight + + + Nr + + Textbox @@ -6992,204 +6992,204 @@ Pungency - + <b>Label</b>= - + <b>Description </b>= - + <b>Type </b>= - + <b>Value </b>= - + <b>Documentation </b>= - + <b>Button# </b>= - + Save image using current graph size to a png format - + linear: linear interpolation cubic: 3rd order spline interpolation nearest: y value of the nearest point - + ON/OFF logs serial communication - + Automatic generated name = This text + date + time - + ON/OFF of automatic saving when pressing keyboard letter [a] - + Sets the directory to store batch profiles when using the letter [a] - + Allows to enter a description of the last event - + Add new extra Event button - + Delete the last extra Event button - + Show help - + Backup all palettes to a text file - + Restore all palettes from a text file - + Action Type - + Action String - + Aspect Ratio - + Example: 100 + 2*x - + Example: 100 + x - + Erases wheel parent hierarchy - + Sets graph hierarchy child->parent instead of parent->child - + Increase size of text in all the graph - + Decrease size of text in all the graph - + Decorative edge beween wheels - + Line thickness - + Line color - + Apply color pattern to whole graph - + Add new wheel - + Rotate graph 1 degree counter clockwise - + Rotate graph 1 degree clockwise - + Save graph to a text file.wg - + Sets Wheel graph to view mode - + open graph file.wg - + Close wheel graph editor - + Clear alarms table - + Interval diff --git a/wiki/ReleaseHistory.md b/wiki/ReleaseHistory.md index 7953df596..21c6d8267 100644 --- a/wiki/ReleaseHistory.md +++ b/wiki/ReleaseHistory.md @@ -1,6 +1,21 @@ Detailed Release History ======================== +v0.9.4 (6.6.2015) +------------------ + + * New Features + * adds alarm table sorting + * Changes + * improved custom event annotation rendering + * roast report now lists additionally the ET temperature of events + * updated underlying libs like Python/Qt/PyQt/Matplotlib/.. (Mac OS only) + * Bug Fixes + * fixed element order in legend + * fixed WebLCDs + * fixes to Fuji PXR "RampSoak ON" mechanism + + v0.9.3 (15.1.2015) ------------------