Post Reply 
STRINGFROMID and gradians
09-18-2018, 08:13 AM (This post was last modified: 09-18-2018 08:14 AM by Didier Lachieze.)
Post: #1
STRINGFROMID and gradians
I would like to display the current angle mode in the current language. Using STRINGFROMID(21) I get the current language translation for Radians, and with STRINGFROMID(22) I get it for Degrees, but I can’t find the ID for Gradians.
Could it be that as the gradians were a late addition to the Prime, the STRINGFROMID maximum ID value (2996) was not updated to include the new strings?
Find all posts by this user
Quote this message in a reply
09-18-2018, 03:46 PM
Post: #2
RE: STRINGFROMID and gradians
STRINGFROMID(2193)

-road
Find all posts by this user
Quote this message in a reply
09-18-2018, 04:10 PM
Post: #3
RE: STRINGFROMID and gradians
Not really, I expect to get "Gradians" in English, "Gon" in Deutsch, "Grades" in French ... (what is displayed in the Home Settings), but with STRINGFROMID(2193) I just get "Gradient" for these languages.
Find all posts by this user
Quote this message in a reply
09-18-2018, 04:22 PM
Post: #4
RE: STRINGFROMID and gradians
My bad. I wrote a little program to find it, but misspelled Gradians and found Gradient instead.

-road
Find all posts by this user
Quote this message in a reply
09-18-2018, 04:39 PM
Post: #5
RE: STRINGFROMID and gradians
(09-18-2018 04:22 PM)roadrunner Wrote:  My bad. I wrote a little program to find it, but misspelled Gradians and found Gradient instead.

-road

Could you kindly share your little program, please?!
Find all posts by this user
Quote this message in a reply
09-18-2018, 05:09 PM
Post: #6
RE: STRINGFROMID and gradians
EXPORT cs()
BEGIN
X:=2996;
WHILE X>=0 DO
IF STRINGFROMID(X) == "Gradient" THEN
PRINT(X + " " + STRINGFROMID(X));
END;
X:=X-1;
END;
END;
Find all posts by this user
Quote this message in a reply
09-19-2018, 02:24 AM
Post: #7
RE: STRINGFROMID and gradians
A small update to this program and I found it is 1628.

STRINGFROMID(1628)
English: gradian
French: grade
Spanish: gradianes

EXPORT cs()
BEGIN
X:=2996;
WHILE X>=0 DO
IF INSTRING(STRINGFROMID(X),"rad") > 0 THEN
PRINT(X + " " + STRINGFROMID(X));
END;
X:=X-1;
END;
END;

Ceci n'est pas une signature.
Find all posts by this user
Quote this message in a reply
09-19-2018, 04:07 AM
Post: #8
RE: STRINGFROMID and gradians
It's close but it's not the string used in the Home Settings, look at German for example.
Find all posts by this user
Quote this message in a reply
09-19-2018, 05:02 AM
Post: #9
RE: STRINGFROMID and gradians
Bonjour

Pour afficher le mode angulaire en clair, j'utilise STRINGFROMID(1626+HAngle)
cela fonctionne pour le Français, l'Anglais, l'Espagnol.
Mais pas pour l'allemand peut-être un problème de traduction.


Hello

To display the angular mode in clear, I use STRINGFROMID (1626 + HAngle)
it works for French, English, Spanish.
But not for German may be a translation problem.

Sorry for my english
Find all posts by this user
Quote this message in a reply
09-19-2018, 06:31 AM (This post was last modified: 09-19-2018 06:36 AM by Tim Wessman.)
Post: #10
RE: STRINGFROMID and gradians
STRINGFROMID("Modes_Gradian")

Yes, there currently is no utility in the system to let you search the strings...

You are correct that the old number based input stopped at a certain point. (specifically, when we switched to using the new language resource files 2 years back or so). To provide backward comparability on the change, we linked them together at that time in a little table.

Part of why that utility hasn't been turned on was we really wanted to get some cleanup done in the string names as in some cases they are out of order, named with spelling mistakes, etc and once it was public they'd be locked in. Probably not worth the time to do that cleanup though.

TW

Although I work for HP, the views and opinions I post here are my own.
Find all posts by this user
Quote this message in a reply
09-19-2018, 06:38 AM
Post: #11
RE: STRINGFROMID and gradians
Thanks Tim !

It works also for STRINGFROMID("Modes_Radian") and STRINGFROMID("Modes_Degree") and other modes... a built-in utility to search the strings would be great.
Find all posts by this user
Quote this message in a reply
09-19-2018, 07:03 AM
Post: #12
RE: STRINGFROMID and gradians
Hello,

:-(

STRINGFROMID(number) is depreciated and should not be used anymore...
The main issue is that doing it this ways forces us to continue using the same numbering scheme that we created 10 years ago for the 39GII+... Not a good thing...

2~3 years ago we moved to a new/different scheme that allowed us to easely add/change/modify strings.
We also changed STRINGFROMID to use strings as IDs...

But this has not been widely announced :-( sorry about that...

Anyhow, strings are now separated in 40 "groups" and a string ID is a string composed of the group name, an underscore character and a string ID...
For example: "Main_CANCEL"...

Only problem: How would the user know/find these IDs????
Well, That is another problem and I will try to fix it in a future release...
In the meantime, please find attached the "list" of all groups and IDs.
Each list here starts with a group name and then lists ALL the IDs in said group.

Cyrille


Attached File(s)
.txt  stringfromids.txt (Size: 52.86 KB / Downloads: 43)

Although I work for the HP calculator group, the views and opinions I post here are my own. I do not speak for HP.
Find all posts by this user
Quote this message in a reply
09-19-2018, 08:12 AM
Post: #13
RE: STRINGFROMID and gradians
Note that these string names are NOT final and guaranteed to be supported long term. For example, in the "modes" group there are a bunch of spreadsheet items that need to be moved.

Once that happens, the string name will have changed. The upside will be that we'll be close to allowing users will then be able to make new language translations or modifications to existing ones. Smile

TW

Although I work for HP, the views and opinions I post here are my own.
Find all posts by this user
Quote this message in a reply
09-19-2018, 03:53 PM
Post: #14
RE: STRINGFROMID and gradians
(09-19-2018 07:03 AM)cyrille de brébisson Wrote:  X
Only problem: How would the user know/find these IDs????
Well, That is another problem and I will try to fix it in a future release...
In the meantime, please find attached the "list" of all groups and IDs.
Each list here starts with a group name and then lists ALL the IDs in said group.

Cyrille

Great!
Into my mid come hold [Shift] [Vars]
but then you would have to implement a hold-Shift functionality
Remember the old HP 49/50 hold-shift keylevels with keynumber nn.xy
where x is the used shift key and y is the hold
Find all posts by this user
Quote this message in a reply
09-19-2018, 04:10 PM
Post: #15
RE: STRINGFROMID and gradians
(09-19-2018 08:12 AM)Tim Wessman Wrote:  Note that these string names are NOT final and guaranteed to be supported long term. For example, in the "modes" group there are a bunch of spreadsheet items that need to be moved.

Once that happens, the string name will have changed. The upside will be that we'll be close to allowing users will then be able to make new language translations or modifications to existing ones. Smile

Well, that would be a massive improvement!

I remember the days I made a Finnish translation of the main error messages in SysRPL.
Then the OS msg handling changed, but JYA helped to change the source code accordingly.
The new inner handler secrets thus remained secret.
The free FINLIB49 still has both of our names in the Copyright splash screen.
Find all posts by this user
Quote this message in a reply
09-19-2018, 10:10 PM (This post was last modified: 09-19-2018 10:15 PM by Didier Lachieze.)
Post: #16
RE: STRINGFROMID and gradians
Thanks Cyrille & Tim !

Leveraged from this program, here is a new program to generate text files for the different languages including the Group_ID and the related string in the language locale.
For each group the IDs are sorted by alphabetical order.

Code:
EXPORT STRINGFROMID_TXT()
BEGIN
LOCAL li,header,group,id,j,k,str;
LOCAL Tx,Nmb,lg,id_list;

li:={
{"Main","None","STO","CANCEL","OK","PAGE","EDIT","CHOOSE","CHECK","CHECKCHAR","ModesEnglish","ModesFrench","ModesChinese","ModesJapanese","ModesRussian","COPY","SHOW","SAVE","RESET","SORT","SEND","START","AppsTitle","AppSortAlpha","AppSortChronologicaly","AppSortGrouped","AppSortTitle","Program","END","String","ALL","UserApps","EVAL","InvalidInput","DELETE","TITLEChooseNewNameforApp","HELPAPPChooseNewName","BEGIN","Name","AreYouSureYouWantToDeleteThisApp","ClearAllExpressions","Help","PASTE","StreamerPressAnyKey","PressAnyKeyToGetHelp","Key","TREE","AreYouSureDeleteAllApps","ProgramHadAnError","SymbView","PlotView","NumView","SymbSetup","PlotSetup","NameAlreadyInUse","Variable","ClearMemory","FullMemory","NoConnection","CancelOp","AreYouSureResetThisApp","CLEAR","CUT","LINE","ModesDeutchland","ModesEspana","ModesNetherlands","ModesPortuguese","DebugSkip","DebugStep","DebugStop","DebugCont","AreYouSureYouWantToDeleteThisItem","AreYouSureYouWantToDeleteAllItems","PasteShow","DeviceCommIncompatible","SSCopyValue","SSCopyFormula","SSCopyFormat","SSCopyValueFormat","SSCopyFormulaFormat","DefaultTest","GeomChooseColorTitle","CalendarJanruary","CalendarFebrary","CalendarMarch","CalendarApril","CalendarMay","CalendarJune","CalendarJuly","CalendarAugust","CalendarSeptember","CalendarOctober","CalendarNovember","CalendarDecember","CalendarSunday","CalendarMonday","CalendarTuesday","CalendarWednesday","CalendarThursday","CalendarFriday","CalendarSaturday","BatteryLow","BatteryCritical","HelpOther","HelpFind","HelpFindNext","HelpFindSearchLabel","HelpFindSearchLabelHelp","HelpFindContent","HelpFindContentHelp","HelpExample","TerminalTitle","MatrixSwap","2DClipboardFormat2D","2DClipboardFormatNative","ProgramErrorDuringInit","DebugQuitAndEdit","Backups","BackupDelete","BackupNameHelp","Backup","BackupRestore","BackupRestore1","BackupRestore2","BackupRestore3","BackupDeleteAll","MenuBrowse","Accept","Reject","BaseAppLabel","BaseAppHelp"},
{"ConnKit","TestModePasswordInvalid","ModesDecimalLabel","ModesDecimalHelp","CASVarsVariables","SIZE","StreamerOverwriteExistingData","EXIT","ANoteWithSamenameAlreadyExists","AExamModeWithSamenameAlreadyExists","StreamerWaitingConnection","InsertRow","InsertColumn","DeleteRow","DeleteColumn","DeleteAll","ClearContents","ChangeColor","BackupFile","Backup","BackupSaved","BackupRestored","Restore","Properties","Preferences","Poll","Quiz","ExamModes","SpreadsheetPasteSameSize","Minutes","Hours","Hour","EnableLogging","SelectChannelAuto","Environment","Wireless","WorkingFolder","WirelessSSID","WirelessChannel","Content","Calculators","Backups","Logs","Temp","Polls","QuizFolder","Title","HPName","Build","About","UpdateCalculator","GoToHPDotCom","ExitApplication","SaveTheCurrentItem","SaveAll","SaveAllItems","File","Assesment","Open","GetScreenCapture","Monitor","Refresh","CloneFromHere","CloneToHere","SendToClass","CheckForUpdate","Window","Class","Toolbar","Ready","PreferencesSaved","SelectColor","UpdateCheckOnline","UpdateNotNow","CheckForUpdateAuto","UpdateUnconnected","UpdateHostLookup","UpdateConnecting","UpdateConnected","UpdateLoggingIn","UpdateClosing","UpdateDownloadError","UpdateManualDownload","UpdateCouldNotConnectToServer","UpdatePleaseCheckInternet","Done","UpdateConnectingToServer","Downloading","DoYouWantToSave","NewList","NewNote","NewProgram","NewExamMode","NewQuiz","NewPoll","Message","SaveImage","ImageFormatString","ImageSize","SendMessage","CopyToClipboard","SaveAs","Project","Large","Medium","Small","ScreenCapture","Close","ScreenCaptureBorder","ScreenCaptureSize","UpdateDoYouWantToDownload","UpdateNoUpdatesAvailable","AppVersion","OSVersion","BootloaderVersion","SerialNumber","DoneFWUpdate","FWUpdateFileCheckError","FWUpdateRenameFailed","FWUpdateNewFileError","FWUpdate","FWUpdateTimeout","FWUpdateAborted","PQCanGoBack","PQCanExit","PQType","PQQuestion","PQAnswer","PQMultipleChoice","PQNumber","PQPoint","PQExpression","PQText","PQ_ABCDE","PQSelection","PQChoose","PQYesNo","PQTrueFalse","PQTitleLabel","PQLikertScale","PQInstructions","PQQuestions","PQImmediatePopup","ResetHelp","ExamConfigs","Results","Firmware","UpdateFirmware","UserGuide","CloseAll","Tile","Cascade","Initializing","Merge","Replace","AlreadyExists","ReplaceWith","Modified","YesToAll","NoToAll","Next","Previous","Messages","DoYouWantToUpgradeFirmware","PQChoiceALabel","PQChoiceBLabel","PQChoiceCLabel","PQChoiceDLabel","PQChoiceELabel","PQChoiceYes","PQChoiceNo","PQChoiceAgree","PQChoiceTrue","PQChoiceFalse","PQChoiceAlways","PQChoiceSometimes","PQChoiceNever","PQChoiceDisagree","PQChoiceNeutral","PQChoiceStronglyAgree","PQChoiceStronglyDisagree","PQChoiceNotConfident","PQChoice100Confident","PQChoiceOften","PQChoiceRarely","PQLikertTypeAgreeement","PQLikertTypeConfidence","PQLikertTypeOccurance","PQLikertTypeCustom","PQChoice","PQSelectionEditor","AreYouSureYouWantToDeleteThisPoll","AreYouSureYouWantToDeleteThisQuiz","AreYouSureYouWantToDeleteThisResult","AreYouSureYouWantToDeleteAllPolls","AreYouSureYouWantToDeleteAllQuizzes","AreYouSureYouWantToDeleteAllResults","PQCanOnlySendOnce","AutoRefresh","AppStartFailure","Folder","Note","NewFolder","InvalidName","ConKitNetworkCollision","RFOldProtocol","BackupFailed","Update","ConnkitSmallest","AddFile","AddVariable","AddIcon","AreYouSureDeleteThisVariable","AreYouSureDeleteThisFile","ConnkitAppFiles","Documentation","EmulatorUserGuide","EmulatorQuickStartGuide","EmulatorSkinMenu","EmulatorCalculator","EmulatorHideTitlebar","EmulatorVirtualCalculator","SkinCompact","SkinSmall","SkinMedium","SkinLarge","SkinResizing","CalcTypeLocal","CalcTypeWireless","CalcTypeNetwork","CalcTypeUSB","UpdaterSendingFile","UpdaterDoNotDisconnect","UpdaterBrowseForUpdateFiles","UseNewUpdateMethod","NetworkName","NetworkPassword","CalcTypeEmulator","EmulatorVirtualCalculatorShort","ConnkitResultTitle","ConnkitAddBackground","ImageFormatStringJpgFirst","IpNetworking","AllowUpdateWireless","SendOldCalculator","EnableNetwork","ConnkitDragBox","CreateNewContentItem","UpdateMayResume","ResumingUpdate","BetaNotice","BetaUse","BetaReport","VibrateOnTouch","TouchSounds","UnableUpdate","PrimeGraphingCalc","NoPrimeConnected"},
{"Program","ProgramTitle","RUN","Function","Loop","Tests","ValidateMenu","Branch","Drawing","InOut","AppFunctions","NewProgram","ProgrammingCommand","PrgmTemplate","AreYouSureYouWantToDeleteThisPrgm","AProgramWithSameNameExists","TITLESaveProgramAs","NoErrorsInProgram","Block","ProgramParamTitle","DEBUG","PrgmCMDS","TITLERenameProgramAs","CommandPix","CommandCart","ProgramCreateUser","ProgramAddPragma","LabelCASHelp","EncryptedSourceHidden","EncryptedInfoInChoose","CanNotEditEncrypted","ReadOnly","Encrypt","Protection","Bookmarks","EncryptNewName","GOTOLineNumber","GOTOLineNumberHelp","Indent","FormatSource"},
{"HomeSet","ECHO","Complex","List","Matrix","Modes","ExportedUSER","ExportedVariables","Real","VarsHomeTitle","VarsHOME1","APP","VALUE","VALUE1","VarsCASTitle","CAS","CAS1","AppVars","GOTO","Integers","INFO","HELP","HELP1","GotoTitle","GO","GORIGHT","GODOWN","Vector","Matrice","Insert","Delete","MatrixRow","MatrixColumn","Apps","Programs","Notes","Matrices","Lists","Graphics","History","MemoryManager","VIEW","AreYouSureYouWantToDeleteAllNotes","AreYouSureYouWantToDeleteAllPrgms","AreYouSureYouWantToDeleteAllMatrices","ListLibrary","MatrixLibrary","ViewsTitle","ClearList","AreYouSureYouWantToDeleteAllLists","DeleteMatrix","AreYouSureYouWantToClearMemory","SendAll","AreYouSureDeleteCalculationHistory","AreYouSureDeleteUserVars","AreYouSureDeleteCasVars","SelectProgram","INPUTTitle","SYSTEM","DefineNameHelp","DefineFunctionHelp","DefineVarCheckHelp","VarsUserVars","VarsUserFnc","DefineFunction","DefineTitle","DefineNameExists","ContextGetHome","ContextGetCas","ContextMEssaging","RPNStack","RpnDUPN","RpnDROPN","RpnPICK","RpnLIST","RpnROLLD","RpnROLL","BASE","SIGNED","NOT","BaseTitle","BaseWas","BaseOut","BaseHelpEditor","BaseEdit","BaseEditTick","EnterNewValueForVariable","MessagingReplyLabel","More","FreeMemory","FreeStorage","PollIncomplete","PollWarnOneSend","MatrixGotoRowHelp","MatrixGotoColHelp","MatrixSelect","MatrixSelection","MatrixSelectionCheck","MatrixRow1","MatrixRow2","MatrixCol1","MatrixCol2","MatrixSwapRowTitle","MatrixSwapColTitle","MatrixSelectArea","MatrixSelectionSwap"},
{"Chars","Title","ChooseHelp","PageTitle","Latin","LatinSup","LatinExtA","LatinExtB","IPA","SpaceMod","Diacritics","Greek","Cyrillic","CyrillicSup","Armenian","Hebrew","Arabic","Syriac","ArabicSup","Thaana","Samaritan","Mandaic","Unknown","ArabicExtA","Devanagari","Bengali","Gurmukhi","NKo","Gujarati","Oriya","Tamil","Telugu","Kannada","Malayalam","Sinhala","Thai","Lao","Tibetan","Myanmar","Georgian","HangulJamo","Ethiopic","EthiopicSup","Cherokee","UnifCanadianAbSyl","Ogham","Runic","Tagalog","Hanunoo","Buhid","Tagbanwa","Khmer","Mongolian","UnifCanadianAbSylExten","Limbu","TaiLe","NewTaiLue","Buginese","TaiTham","Balinese","Sundanese","Batak","Lepcha","OlChiki","SundaneseExt","VedicExt","PhoneticExt","PhoneticExtSup","ComDiacriticsSup","LatinExt","GreekExt","GeneralPunc","SubsSupers","Currency","DiacSymbs","Letterlike","NumberForms","Arrows","MathematicalSymbols","MiscTech","ControlPictures","OCR","EnclosedAlpha","BoxDrawing","Blocks","GeometricShapes","MiscSymb","Dingbats","MiscMathA","SupArrowsA","BraillePatterns","SupplementalArrowsB","MiscMathSymbB","SupMathOperators","MiscSymbArrows","Glagolitic","LatinExtC","Coptic","GeorgianSup","Tifinagh","EthiopicExt","CyrillicExtA","SupPunc","CJKRadicals","KangxiRadicals","IdeographDescChars","CJKSymbPunc","Hiragana","Katakana","Bopomofo","HangulCompatibilityJamo","Kanbun","BopomofoExtended","CJKStrokes","KatakanaPhonExt","EnclosedCJKLettersMonths","CJKCompatibility","CJKUnifiedIdeographExtenA","YijingHexagrams","CJKUnifiedIdeographs","Yi","YiRadicals","Lisu","Vai","CyrillicExtB","Bamum","ModifierToneLetters","LatinExtD","SylotiNagri","IndNo","Phagspa","Saurashtra","DevaExt","KayahLi","Rejang","HangulA","Javanese","MyanmarExtA","TaiViet","Cham","EthiopicExta","WarangChiti","Beria","MeeteiMayek","HangulSyllables","HangulJamoExtB","HighSurrogates","HighPrivateUserSurrogates","LowSurrogates","PrivateUseArea","CJKCompatIdeog","AlphabeticPresForms","ArabicPresenForms","VariationSel","VerticalForms","CombiningHalfMarks","CJKCompatForms","SmallForm","ArabicPresFormsB","HalfwidthFullwidth","Specials"},
{"Memory","TestModeMenu","ModesFraction","ModesMixedFraction","ModesFormatNbStdHelp","CASDebugTitle","TestModeConfigurationMenuCheck","SaveAs","RECV","InferenceResultLabel","InferenceResultHelp","InferenceFailRejectNull","","InferenceCriticalZHelp","InferenceCriticalSampMeanHelp","InferenceCriticalSampMeanLabelMinHelp","InferenceCriticalSampMeanMaxHelp","InferenceCriticalDeltaSampMeanHelp","InferenceCriticalDeltaSampMeanMinLabel","InferenceCriticalDeltaSampMeanMinHelp","InferenceCriticalDeltaSampMeanMaxHelp","Graphic","Notepad","ExportedUSER1","VarsHOME","APP1","NAME","CASVarsPrograms","Constant","Convert","MathMATH1","MathPHYS1","MathPHYS","INVCROSS","InvCrossHelp","SIZE1","PlotSetup2","VarsFunctions","NumSetup2","InferenceCriticalTPlot","","InferenceTestDeltaPHelp","InferenceTestDeltaMeanHelp","InferenceTestPHelp","","InferenceTestXHelp","InferenceTestZHelp","InferenceCritPPlot","InferenceConf","InferenceConfHelp","InferenceDeltaMean","InferenceP","InferenceDeltaP","InferenceCriticalDeltaMeanHelp","InferenceCriticalDeltaMeanMinLabel","InferenceCriticalDeltaMeanMinHelp","InferenceCriticalDeltaMeanMaxHelp","InferenceCriticalPHelp","InferenceCriticalPMinLabel","InferenceCriticalPMinHelp","InferenceCriticalPMaxHelp","InferenceCriticalDeltaP","InferenceCriticalDeltaPHelp","InferenceCriticalDeltaPMinLabel","InferenceCriticalDeltaPMinHelp","InferenceCriticalDeltaPMaxHelp","","","","SolveAppsSolTypeConstant","","","","CRSymbol","ProgramCommands","Prgm","Prgm1","INS","NewNotes","NewPrograms","StatsS1MarkLabel","StatsS2MarkLabel","StatsS3MarkLabel","StatsS4MarkLabel","StatsS5MarkLabel","StatsEnterUserDefinedFit","","","IncrementAngle","Pi","StatsEnterRowHelp","ClearQuestion","StatsAllCols","SmallFont","MediumFont","LargeFont","WhiteColor","BlackColor","DGrayColor","LGrayColor","BulletLevel1","BulletLevel2","BulletLevel3","Underline","Strikethrough","SuperScript","SubScript","FGColor","BGColor","Bullets","NewProgramHelpLabel","MatrixMatrix","WIDTH1","WIDTH2","WIDTH3","WIDTH4","ColCount","WIDTH","PlotSetupInvCrossHelp","","","SolveNumViewSolList","OverlayPlot","SolveAppsSolTypeExtremum","SolveAppsSolTypeSignReversal","VarsCalculate","VarsStats","VarsSummary","","","","","","","","","","","","","","","","","","","","","","","","StatCalcMinYLabel","","StatCalcQ1YLabel","StatCalcQ1YHelp","StatCalcMedYLabel","StatCalcMedYHelp","StatCalcQ3YLabel","StatCalcQ3YHelp","StatCalcMaxYLabel","StatCalcMaxYHelp","MENUSUMS","MENUSUMS1","ListSize","UnitsConvert","UnitsFunctions","Stat1VarOutlierHelp","Stat1VarOutlierEditHelp","GeomPlotSetupLabelHelp","PlotSetupFunctionLabels","PlotSetupFunctionLabelsHelp","PlotSetupShortcuts","PlotSetupShortcutsHelp","StreamerWaitingReadSensor","StreamerNoSensorDetected","StreamerViewCalibrate","StreamerPlotTypeOverlay","StreamerPlotTypeStack","StreamerFilterAverage","StreamerFilterSingle","StreamerFilterMinimum","StreamerFilterMaximum","StreamerFilterAuto","StreamerFilterWYSIWYG","StreamerCalibrationTitle","StreamerValueLabel","StreamerValueHelp","StreamerDeleteDataPrompt","StreamerEventMethodLabel","StreamerEventLabel","StreamerTimeHelp","StreamerExportStatsTitle","StreamerWidthSecLabel","StreamerWidthSecTitle","StreamerPlotDisplayLabel","StreamerPlotDisplayHelp","StreamerDisplayFillterLabel","StreamerDisplayFilerHelp","StreamerExportFilterLabel","StreamerExportFilterHelp","StreamerHistoryTypeLabel","StreamerHistoryTypeHelp","StreamerHistoryLabel","StreamerHistoryHelp","StreamerFilterFixed","StreamerEnterEntry","StreamerExportNotice","StreamerPROBE","StreamerCH","StreamerZERO","StreamerEnter1or2Points","StreamerPressOKtoAccept","StreamerPressCancelToAbort","ModeHLTColorLabel","ModeSECColorLabel","FunctionSolnNarrowXRNG","FunctionSolnBadXRNGMin","FunctionSolnBadXRNGMax","Stat1VarEnterDataColumn","StreamerChooseSensorTypeHelp","NumDeleteAllRows","LongUndef","ShortUndef","SolvePlotSetupTitle","Stat1VarPlotHRNGNotInterval","InferencePROB","InferencePROB1","StatsFreqSYMBLabel","LinearSolvSetup","SolveAppsSolTypeSingularity","EnterNewProgramsName","Normal","InformationView","CannotEditWithTextSelection","ErrorsInProgram","ReverseConnection","EvalIssue","TemplateMenu","StatisticsFitHelp","AreYouSureYouWantToExitWithoutSavingPrgm","SizeLimitReached","StatisticsLogisticLHelp","StatisticsLogisticCHelp","LINE1","Cata2","FORMAT2","FormatTextLabel","FormatTextSizeHelp","FormatTextFGColor","FormatTextBGColor","TITLERenamePrgmAs","ProgramEnterName","NoteSortChooseTitle","ProgSortChooseTittle","SheetRow","SheetCol","SheetSheet","SheetFormatStringHelp","SheetFormatVAlignHelp","SheetFormatHAlignHelp","SheetFormatForeground","SheetFormatForegroundHelp","SheetFormatBackground","SheetFormatBackgroundHelp","SheetFormatFormula","SheetFormatFormulaHelp","SheetSelectChooseLabel","SheetSelectChooseHelp","SheetSelectRowHelp","SheetSelectColHelp","SheetMenuSelect","SheetFormat","Sheet2DMode","StreamerExportGoStats","StreamerExportFinished","StreamerChooseExportColumn","StreamerDataColumnNotEmpty","StreamerAddedNthPoint","ModesThemeHelp","ModesThemeLabel","ModesColorLabel","Test1p5h","TestUntilMidnight","TestNever","","SSGotoSelHelp","SSGotoSelLabel","ModesTimeSecondHelp","StatCalcSumSqDifOfMean","SSRegrPredX","SSRegrPredY","Operations","Norms","CasRewrite","CasSolve","CasDeriv","GeomZoomUndo","GeomLine","GeomLineVector","GeomLineOther","GeomPolygon","GeomPolygonNgon","GeomPolygonHexagon","GeomPolygonPentagon","GeomPolygonRegHex","GeomPolygonSpecial","GeomPolygonSpecialEqTriangle","GeomCurve","GeomCurveSpecial","GeomCurvePlot","GeomTransform","GeomPoint","GeomPointOther","GeomPointOtherElement","GeomPointOtherTrace","GeomPointOtherErase","GeomPointOtherUntrace","GeomMoveChooseTitle","GeomFunctionsChooseTitle","GeomPlotParamChooseTitle","GeomPlotPolarChooseTitle","GeomPlotSeqChooseTitle","GeomTraceChooseTitle","GeomUntraceChooseTitle","GeomEraseTraceChooseTitle","GeomAttributeChooseTitle","GeomSelectChooseTitle","GeomEraseChooseTitle","GeomVars","GeomVarsTitle","GeomWizard","GeomWizardTitle","GeomChangeColor","GeomToggleCaption","GeomFillColor","GeomHideObject","GeomMoveObject","GeomConfirmClearingTitle","GeomSelectCornerLabel","GeomMoveLabel","GeomPointerLabel","GeomZoomSelectLabel","GeomEnterFunctionExpressionLabel","GeomEnterSequenceExpressionLabel","GeomEnterPolarExpressionLabel","GeomEnterParamExpressionLabel","GeomHitLabel","SSConfStatXlow","SSConfStatXhigh","SSConfStatXmiddle","SSStatStdDev","SSStatRegB","SSStatRegM","SSStatRegX","SSStatRegY","SSStatRegBasicMXY","SSStatTrigFitA","SSStatTrigFitB","SSStatTrigFitC","SSStatTrigFitD","SSStatRegPolyCO","SSStatRegPolyDeg","SSStatRegPolyM","RpnKEEP","Geo3D","BITS","MenuReply","MessagingReplyHelp","MessagingRequestHelp","MessagingRequestConfirmation","ReturnPoll","MessagingCancelRequest","ClassroomNetwork","ConnKitClearAll","ConnKitChat","Remove","TBInverse","TBSchur","TBLncollect","TBPowexpand","TBplotdensity","ImplicitSymbColorSelection","TracingExtrema","ImplicitPlotAddPoint","ImplicitPlotAddPointMsg","ImplicitNumBYOIndepVarXY","ImplicitNumEdgeDefn","ImplicitNumPointsOfInterest","ImplicitNumEdge","ImplicitNumRegion","ImplicitNumAuto","ImplicitNumSat","ImplicitNumNoneSat","TBbarycenter","TBCenter","TBDivPoint","TBelement","TBisobarycenter","TBmidpoint","TBorthocenter","TBpoint2d","TBDrawSlp","TBLineTan","TBaltitude","TBbisector","TBextbisector","TBhalfline","TBmedianline","TBsegment","TBtangent","TBrighttriangle","TBsquare","TBhyperbola","TBcircumcircle","TBlocus","TBhomothety","TBiscoplanar","TBisorthogonal","TBissquare","TBmeasdistance2","ListCount","ExamConfigHelp","WirelessConnect","WirelessDisconnect","WirelessAutoConnect","WirelessConnected","HelpSyntax","ConnKitPQAlwaysSometimesNever","ConnKitPQOptions","ConnKitProjectTimeoutRetry","ConnKitLatestVersion","ConnKitCurrentVersion","ConnKitThisCalculator","ConnKitDoNotAskMeAgain","ConnKitThisSession","ConnKitEver","ConnKitAutoCheckForUpdates","RFDisconnected","ConnKitUpdateFailed","ConnKitUpdateOk","ConnKitRetry","PQShowNames","EmulatorConnectTo","EmulatorHelpFileNotFound","DeprYear","GeoActionsSelectPointEnter","GeoActionSerquenceEnterFactor","","","","","","","","","","","","","","","","RFConnectionHistory","MatrixGotoLabel","MatrixSwapCol","MatrixSwapRow","","","","","","","","","","","","","","","EmpyAppLabel","EmptyAppHelp","DebugSwapPressToReturn","SwapList","InsertItem","DeleteItem","List1","List2","NaN","PlotImageNotFound","PlotSketchNotFunctional","","","","","","","",""},
{"Modes","TestModeConfigurationTitle","OTHER","AngleLabel","FormatLabel","ComplexLabel","Radian","Degree","Gradian","AngleHelp","Standard","Fixed","Scientific","Engineering","Rounded","Float","FormatHelp","FormatNbHelp","Dot","Comma","ComplexHelp","Title","CASModesTitle","CASModesDigitsHelp","CASEvalTitle","CASEvalHelp","CASProgTitle","CASProgHelp","CASEpsilonTitle","CASEpsilonHelp","CASRecursTitle","CASRecursHelp","CASProbaTitle","CASProbaHelp","CASApproxTitle","CASApproxHelp","CASMaxIterTitle","CASMaxIterHelp","CASComplexTitle","CASComplexHelp","CASComplexVarTitle","CASComplexVarHelp","CASIncrPowerTitle","CASIncrPowerHelp","CASAllTrigTitle","CASAllTrigHelp","CASSqrtTitle","CASSqrtHelp","CASIntHelp","CASVerifError","TestTitle","TestConfigurationLabel","TestConfigurationHelp","TestEraseHelp","TestConfigurationUserDisabled","TestMenuConfiguration","TestEraseLabel","TestBlinkHelp","TestBlinkLabel","LanguageHelp","LanguageLabel","Physics","HelpTitleCase","SystemApps","NotesAndPrograms","NewNotesAndPrograms","Mathematics","StatsNoneText","System","ON","OFF","Units","FontLarge","FontMedium","FontSmall","FontHelp","NameHelp","Name","FontLabel","ThemeLabel","ThemeHelp","ThemeLight","ThemeDark","2DHelp","2DLabel","MenuDisplayLabel","MenuDisplayHelp","DefinedAppLeveAM","DefinedAppLeveNF","DefinedAppLeveDM","LanguageSelect","SheetFormatUnspecified","SheetFormatSystemFont","ColorHelp","BaseBin","BaseOct","BaseDec","BaseHex","BaseHelp","BaseLabel","BaseSizeHelp","Test15m","Test30m","Test1h","Test2h","Test3h","Test4h","Test5h","Test6h","Test8h","TestTimeHelp","TestTimeLabel","TestPasswordHelp","TestPasswordLabel","NewTestMode","NewTestModeHelpLabel","AreYouSureYouWantToDeleteThisTestMode","AreYouSureYouWantToResetDefaultTestMode","ClockHelp","TimeLabel","TimeHourHelp","TimeMinHelp","TimeDisplayHelp","TimeDisplayAM","TimeDisplayPM","TimeDisplay24","EntryLabel","EntryHelp","Textbook","Algebraic","RPN","AdvRPN","TestMenuRandom","BitsSignedHelp","ComplexType1","ComplexType2","ComplexDisplayHelp","ExamDefaultAngleLabel","ExamNoChange","ExamRadians","ExamDegrees","ExamDefaultAngleHelp","TBMax","TBMinimum","TBSimplify","DateLabel","DateYearHelp","DateMonthHelp","DateDayHelp","DateFormatHelp","DateFormat1","DateFormat2","DateFormat3","WirelessNetworkProperties","RFVersion","RFUnknown","RFNoAdapter","RFNoNWAvailable","RFNoNWSelected","RFConnected","RFConnecting","RFStatus","CASAutoSimplify","TimeRemaining","FirstDayWeekHelp","InitialConfiguration","FirstRunExampleNumbers","DigitGroupingLabel","DigitGroupingHelp","InOut2","InOut3","USB","RFLookingNetwork","Welcome","ExamModeBasic","ExamModeStopUSB","ExamModeMemoryErased","ExamModeGreenBlink","PressEscContinue","SlideUnlock","Exam_Proctorcode_Code","Exam_Proctorcode_CodeHelp","Exam_Proctorcode_Title","Exam_WarningBox_Line1","Exam_WarningBox_Line2","Exam_WarningBox_Line2_bis","Exam_WarningBox_Line3","Exam_WarningBox_Line3_part2","Exam_WarningBox_Line3_part3","Exam_WarningBox_Line3_part3_2","Exam_WarningBox_Line4","Exam_WarningBox_Title","Exam_Memory","Exam_Memory_help","Exam_Memory_Keep","Exam_Memory_Erase","Exam_Memory_Hide","Exam_Memory_Keep_WipeExam","Exam_Protected","Exam_SendStart","Exam_SendFile","Exam_Proctorcode_TitleHelp","Exam_ProctorMode","Exam_ProctoModeHelp","Exam_ModeExitUsb","ExamModeProtect","ExamNoMemoryChange","ExamClearAfterExam","EnterDateHelp","RfCreateNetworkName","RfCreateNetworkName_NameLabel","RfCreateNetworkName_NameHelp","RfCreateNetworkName_EasyLabel","RfCreateNetworkName_EasyHelp","RfAddNetworks"},
{"AppInfer","MethodLabel","TypeLabel","HypLabel","HypTest","ConfInt","TypeHyp1u","TypeHyp2u","TypeHyp1p","TypeHyp2p","TypeHypT1u","TypeHypT2u","TypeConf1u","TypeConf2u","TypeConf1p","TypeConf2p","TypeConfT1u","TypeConfT2u","Alt1u1","Alt1u2","Alt1u3","Alt2u1","Alt2u2","Alt2u3","Alt1p1","Alt1p2","Alt1p3","Alt2p1","Alt2p2","Alt2p3","MethodHelp","TypeHelp","AltHelp","SampleMeanLabel","SampleMeanHelp","SampleMeanPop1Label","SampleMeanPop1Help","SampleMeanPop2Label","SampleMeanPop2Help","SampleSizeLabel","SampleSizeHelp","SampleSizePop1Label","SampleSizePop1Help","SampleSizePop2Label","SampleSizePop2Help","SuccessCountLabel","SuccessCountHelp","SuccessCount1Label","SuccessCount1Help","SuccessCount2Label","SuccessCount2Help","NullHypPopMeanLabel","NullHypPopMeanHelp","PopStdDevLabel","PopStdDevHelp","Pop1StdDevLabel","Pop1StdDevHelp","Pop2StdDevLabel","Pop2StdDevHelp","SignificanceLevelLabel","SignificanceLevelHelp","RejectNull","CriticalZLabel","CriticalSampMeanLabel","CriticalSampMeanMinLabel","CriticalSampMeanMaxLabel","CriticalDeltaSampMeanLabel","CriticalDeltaSampMeanMaxLabel","AppName","CriticalTLabel","NullHypPopPropHelp","NullHypPopPropLabel","PooledHelp","PooledLabel","Sample1StdDevHelp","Sample1StdDevLabel","Sample2StdDevHelp","Sample2StdDevLabel","SampleStdDevHelp","SampleStdDevLabel","TestDeltaPPlot","TestDeltaPLabel","TestDeltaMeanPlot","TestDeltaMeanLabel","TestPLabel","TestPPlot","TestTLabel","TestTPlot","TestXLabel","TestXPlot","TestZLabel","TestZPlot","CritTPlot","CritZPlot","ConfIntPlot","PLabel","DeltaPLabel","TLabel","XLabel","DeltaMeanLabel","MeanLabel","PiLabel","DeltaPiLabel","ZLabel","ConfidenceLabel","ConfidenceHelp","ConfLabel","Mean","CriticalDeltaMeanLabel","CriticalDeltaMeanMaxLabel","CriticalPLabel","CriticalPMaxLabel","CriticalDeltaPLabel","CriticalDeltaPMaxLabel","ALPHA","ALPHA1","ALPHAEQ","CONF","CONF1","CONFEQ","InferValueBetween0_1","InferValueMustBeGT0_Integer","InferValueMustBePositive","DFLabel","InferValueMustBeGT1_Integer","StatCalcCorrLabel","StatCalcCorrHelp","StatCalcCoefDetLabel","StatCalcCoefDetHelp","MENUCALC","Chi2Method","Chi2GOF","Chi22Way","Chi2Help","Regression","RegressionHelp","RegrLinTTest","RegrConfSlope","RegrConfInt","RegrConfMeanResp","InfrenceRegrPredicInt","Chi2Prob","Chi2Count","Chi2ProbLabel","Chi2ProbHelp","Contrib","Contrib1","Exp","Exp1","LinTAltNE0","LinTAltGT0","LinTAltLT0","MinSlopeHelp","MaxSlopeHelp","MinIntHelp","MaxIntHelp","MeanRespLabel","PredIntervalHelp","MeanRespMinHelp","MeanRespMaxHelp","Anova","AnovaOneWay","AnovaHelp","AnovaDFHelp","ProbHelp","CriticalTHelp","","","","","AnovaMSLabel","AnovaMSHelp","AnovaSSErrLabel","AnovaSSErrHelp","AnovaMSErrLabel","AnovaMSErrHelp","AnovaDFErrLabel","AnovaFLabel","AnovaFHelp","AnovaSSLabel","AnovaSSHelp","Chi2ScoreLabel","Chi2ScoreHelp","LinTBeta1Label","LinTBeta1Help","LinTBeta0Label","LinTBeta0Help","SerrLineLabel","SerrLineHelp","SerrSlopeLabel","SerrSlopeHelp","SerrInterLabel","SerrInterHelp","MeanRespHelp","SerrMeanRespLabel","SerrMeanRespHelp","DFHelp","TestTHelp","AnovaDFErrHelp","CalculatedPhat","CalculatedPhat1","CalculatedPhat2","CalculatedPhat1Label","CalculatedPhat2Label"},
{"AppQuadE","NoQUADRealRoots","EQ","EQTICK","GRAPH","GRAPHTICK","LEVEL","TEST","INC1","INC2","INCP5","INCP1","EASY","EASY1","HARD","HARD1","AppName","AnswerMenu","Incorrect","WellDone","TRY","LinearSolverInfiniteSolution","LinearSolverNoSolution","Level1","ExploreAllSols","XIntercept","YIntercept","Discriminant","Vertex","Amplitude","PhaseShift","Displacement","ChooseFunctionType"},
{"ListMat","InferenceProbLabel","IMPORT","InferenceImportTitle","InferenceImportColumnLabel","InferenceImportColumnHelp","MAKE","SortTitle","SortOrderLabel","SortOrderHelp","IndependentLabel","IndependentHelp","DependentLabel","DependentHelp","FrequencyLabel","FrequencyHelp","EnterValueHelp","MakeTitle","MakeExpressionLabel","MakeExpressionHelp","MakeVarLabel","MakeVarHelp","MakeStartLabel","MakeStartHelp","MakeStopLabel","MakeStopHelp","MakeStepLabel","MakeStepHelp","MakeColLabel","MakeColHelp","1VarOutlierLabel","1VarMin","1VarQ1","1VarMed","1VarQ3","1VarMax","1VarPercTotalLabel","1VarCumulativePercTotalLabel","InferenceImportAppHelp","1VarControlLCL","1VarControlUCL","1VarControlMean","ImportDataNotFound"},
{"Toolbox","ExportedPrograms","Calculus","Algebra","AlgebraExtract","GeoPoint","GeoLine","GeoCurve","GeoNgone","GeoTransform","GeoTest","GeoMeasure","GeoMeasurePlot","Hyperbolic","Polynomial","Probability","Trigonometry","Function","CasFunction","MATH","CONST","","","","","","Solve","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Random","Catalog","Cata","","Create","Advanced","Expon","Arithmetic","Number","Plot","Rewrite","Diff","Integration","Limits","Transform","Prime","Divis","PolyCreate","PolyAlgebra","PolySpecial","RewriteExpLN","RewriteCos","RewriteSin","RewriteTan","RewriteTrig","DistribDensity","DistribCumulative","DistribInverse","Special","MatrixVector","MatrixBasic","Factorize"},
{"AppSpread","NAME1","StatCalcMeanXLabel","StatCalcSumXLabel","StatCalcSumX2Label","StatCalcMeanYLabel","StatCalcSumYLabel","StatCalcSumY2Label","StatCalcSumXYLabel","StatCalcNbItemLabel","StatCalcStdDevXLabel","StatCalcStdDevYLabel","StatCalcPopDevXLabel","StatCalcPopDevYLabel","StatCalcStdErrXLabel","StatCalcStdErrYLabel","StatCalcMinXLabel","StatCalcQ1XLabel","StatCalcMedXLabel","StatCalcQ3XLabel","StatCalcMaxXLabel","Spreadsheet","Cell","FormatString","FormatNameHelp","FormatName","FormatVAlign","FormatHAlign","FormatYes","FormatNo","FormatTop","FormatCenter","FormatBottom","FormatLeft","FormatRight","FormatColWidthHelp","FormatColWidth","FormatRowHeightHelp","FormatRowHeight","GotoInstr","GotoHelp2","GotoRef","StatCalcStdDev2XLabel","StatCalcPopDev2XLabel","Period","RegrIntercept","RegrCorr","RegrSampCov","RegrCoefDet","RegrPopCov","Regra","Regrb","Regrc","Regrd","Regre","RegrL","HypStatAcc","HypStatCritXbar1","HypStatCritXbar2","HypStatCp1","HypStatCp2","HypStatDeltCp1","HypStatDeltCp2","Columns","Select","Select1","ModesDigitLabel","FormatCache","SortUp","SortDown","P1TypeobBar","P1TypeobLine","P1TypeobArea","P1TypeobBarPie","P1TypeobScatter","P1SSTypeobCluster","P1SSTypeobStacked","PSSTypeobPercent100","P1SSTypeobPoints","P1SSTypeobLines","PSSTypeobPointAndLines","PSTypeHelp","PSTypeLabel","PSSubTypeHelp","PSSubTypeLabel","PSColorHelp","PSColorLabel","PSNameHelp","PSNameLabel","PSSourceHelp","PSSourceLabel","PSXAxisHelp","PSXAxisLabel","PSYAxisHelp","PSYAxisLabel","P1SSTypeobNormal","P1SSTypeobHanoi","StatCalcSSXLabel","StatCalcSSYLabel","StatCalcStdDev2YLabel","StatCalcPopDev2YLabel","HypStatCritDeltXbar1","HypStatCritDeltXbar2"},
{"AppFinan","NHelp","GroupSizeHelp","GroupSize","NLabel","PVHelp","PVLabel","PMTHelp","PMTLabel","FVHelp","FVLabel","IHelp","ILabel","PPYRHelp","PPYRLabel","CPYRHelp","CPYRLabel","Title","BegEndHelp","PayementLabel","AppName","Principal","Interest","Amortization","AMORT","Balance","BRKEVCostHelp","BRKEVCostLabel","BRKEVFixedHelp","BRKEVFixedLabel","BRKEVProfitHelp","BRKEVProfitLabel","BRKEVQuantHelp","BRKEVQuantLabel","BRKEVSalesHelp","BRKEVSalesLabel","IConvNomIHelp","IConvNomILabel","IConvEffIHelp","IConvEffILabel","IConvPPYRHelp","IConvPPYRLabel","VarsBOND","VarsBRKEV","VarsBlackScholes","VarsCashFlow","VarsDEPR","VarsIConv","","VarsTypeHelp","tTVM","tIConv","tCashFlow","tDepreciation","tBreakEven","tBond","tBlackScholes","tDateConv","OnToAbort","BondsSettDateHelp","BondsSettDateLabel","BondsMatDateHelp","BondsMatDateLabel","BondsCPNHelp","BondsCPNLabel","BondsCallHelp","BondsCallLabel","BondsYieldHelp","BondsYieldLabel","BondsPriceHelp","BondsPriceLabel","BondsAccruedLabel","BondsModDurationLabel","BondsMacaulayLabel","BondsCal360Help","BondsCal360Label","BondsAnnualHelp","BondsAnnualLabel","BSPriceHelp","BSPriceLabel","BSStrikeHelp","BSStrikeLabel","BSTTMHelp","BSTTMLabel","BSRiskFreeHelp","BSRiskFreeLabel","BSVolatilityHelp","BSVolatilityLabel","BSDividendHelp","BSDividendLabel","BSCallLabel","BSPutLabel","","DepreciationBasisHelp","DepreciationBasisLabel","DepreciationSalvHelp","DepreciationSalvLabel","DepreciationFirstHelp","DepreciationFirstLabel","DepreciationLifeHelp","DepreciationLifeLabel","DepreciationFactHelp","DepreciationFactLabel","DepreciationSLine","DepreciationSOYD","DepreciationDecBal","DepreciationDBX","DepreciationFrenchSL","DepreciationAmortFrench","DepreciationMethodHelp","DepreciationMethodLabel","","Depreciation","","DeprRemaining","DeprLeft","DDaysdate1Help","DDaysdate1Label","DDaysdate2Help","DDaysdate2Label","DDaysdeltaHelp","DDaysdeltaLabel","DDaysCal360Help","DDaysCal360Label","","PercentCalcPriceHelp","PercentCalcPriceLabel","PercentCalcCostHelp","PercentCalcCostLabel","PercentCalcMkupPCostHelp","PercentCalcMkupPCostLabel","PercentCalcMkupPPriceHelp","PercentCalcMkupPPriceLabel","","","","","PercentCalcPartPTotalHelp","PercentCalcPartPTotalLabel","PercentCalcOldHelp","PercentCalcOldLabel","PercentCalcNewHelp","PercentCalcNewLabel","PercentCalcPChangeHelp","PercentCalcPChangeLabel","PercentCalc","","","","InvestI","SafeI","CFNumb","NbCF","CF","CFIRR","CFMIRR","CFFMRR","CFTotal","CFNPV","CFNUS","CFPB","CFNFV","CFDPB","","FincanceMarginMarkup","FinanceTotalChange","","FinanceTodayLabel","","CFPYR"},
{"AppSolve","SOLVE","NumHelpLabel1","NumHelpLabel2","NumViewNoVariableErrorMesg","NumViewBadGuessErrorMesg","EnterEquationInSymbolicViewErrorMesg","NumViewSolverError","NumViewCantFindSolution","NumViewWrongVarCount","AppsSolTypeZero","AppsSolTypeConstant1","AutoscaleLHSCell","AutoscaleRHSCell","AutoscaleLHS","AutoscaleRHS","AutoscaleUsingAll","SymbHeader","CheckOnlyOne","AppName","SymbHelp"},
{"SharePlot","MENU","ZOOM","TRACE","TRACE1","DEFN","DEFN1","Setup_XRange","Setup_YRange","Setup_Axes","Setup_Labels","Setup_GridDots","NUMSTART","NumStartHelp","NUMSTEP","NumStepHelp","NumSetupNumStepPos","NUMZOOM","NumZoomHelp","NumSetupZoomGT1","Automatic","BuildYourOwn","NUMTYPE","NumTypeHelp","GotoCue","Ascending","Descending","CHOOSEZoomIn","CHOOSEZoomOut","CHOOSEZoomDec","CHOOSEZoomInt","CHOOSEZoomTrig","CHOOSEZoomUndo","Setup_AxesCue","Setup_GridDotsCue","Setup_LabelsCue","Detail","Table","CopyPlotLeft","ZoomTitle","ZoomCenter","ZoomXIn","ZoomXOut","ZoomYIn","ZoomYOut","ZoomSquare","ZoomSetFactors","ZoomTrig","ZoomFactorsTitle","ZoomFactorsX","ZoomFactorsXGT1","ZoomFactorsY","ZoomFactorsYGT1","ZoomFactorsXHelp","ZoomFactorsYHelp","ZoomRecenterHelp","ZoomRecenterLabel","ZoomBeyondLimits","FunctionGetFromPlot","Setup_Method","Setup_MethodInterval","Setup_MethodAdaptive","Setup_MethodFixedStepSegments","Setup_MethodFixedStepDots","Setup_Cursor","Setup_CursorStandard","Setup_CursorInverting","Setup_CursorBlinking","Setup_GridLines","Setup_GridLinesCue","ZoomSelectACorner","ZoomSelectOppositeCorner","FunctionSignedAreaStart","FunctionSignedAreaEnd","FunctionIntersectionXAxis","FunctionSolnRoot","FunctionSolnNoRoot","FunctionSolnExtremum","FunctionSolnNoExtremum","FunctionSolnIntersection","FunctionSolnNoIntersection","FunctionSolnSignReversal","NumZoomTitle","STOP","NoEqsChecked","XRangeNotInterval","XRangeTooNarrow","YRangeNotInterval","YRangeTooNarrow","Autoscaling","AutoscalingErr","AutoscalingNothingFound","AutoscalingSinglePoint","AutoscalingSingleX","AutoscalingSingleY","NumSetup","FunctionSignedAreaLabel","FunctionSignedAreaCalculating","AutoscaleUsingTitle","AutoscaleUsingAll","NumSortTitle","FunctionSignedAreaTitle","FunctionSolnConstNoRoot","FunctionSolnAffineNoExtremum","YRangeTooBroadForSplitscreen","SymbColorSelection","PopdownDefn","GotoXYTitle","GotoX","GotoXCue","GotoY","GotoYCue","NoFuncsChecked","SequencePlotNoneChecked","SelectionIncludesHeads","NumFontSize","NumInsertRow","NumSwapRows","CopyTo","SetupImage","Setup_ImageXRangeMinCue","Setup_ImageXRangeMaxCue","Setup_ImageYRangeMinCue","Setup_ImageYRangeMaxCue","Setup_ImageCalc","Setup_ImageCue","Setup_ImageOpacity","Setup_ImageOpacityCue","Setup_ImageOpacityBadVal","ImageXRangeNotInterval","ImageYRangeNotInterval","Table_Copy","Table_CopySelection","Table_CopyScreen","CopyScreen","Table_SelectionIncludesT","RenderingTypeCartesian","RenderingTypeFUllScreen","RenderingTypeVerticalFit","RenderingTypeHorizontalFit","RenderingTypeBestFit","RenderingTypeCentered","RenderingType","RenderingTypeHelp","Setup_ImageModeCue","Setup_ImageModeNoBackground","Setup_ImageModeNoBackgroundCue","Setup_ImageModeCentered","Setup_ImageModeCenteredCue","Setup_ImageModeStretched","Setup_ImageModeStretchedCue","Setup_ImageModeBestFit","Setup_ImageModeBestFitCue","Setup_ImageModeXYRange","Setup_ImageModeXYRangeCue","ImageCue","ImageCue_FileNotFound","FcnDefinition","FcnTransform","ImageNote_FileNotFound","ImageNote_FileNotSet","ImageCue_FileNotSet","Defn_Transpose","Defn_Simplify","Defn_Form","Setup_ImageImport","ImageImport_App","ImageImport_AppCue"},
{"AppData","ZOOM1","STATS","ErrorPrefix","ViewExperiment","JumpToTitle","JumpToTimeLabel","JumpToTimeHelp","ExperimentLengthLabel","ExperimentLabelHelp","SamplesLabel","SamplesHelp","ExportSamplingTitle","ExportSamplingStartLabel","ExportSamplingStartHelp","ExportSamplingEndLabel","ExportSamplingEndHelp","CaptureToStatsTitle","Channel1Label","Channel2Label","Channel3Label","Channel4Label","EntryLabel","EventMethodHelp","ChooseColumnHelp","EntryHelp","EventToStatTitle","TimeLabel","SensorVoltage","SensorLight","SensorMicrophone","SensorAccel","SensorForce","SensorCurrent","SensorPH","SensorDropCounter","SensorPressure","SensorEKG","SensorDistance","SensorHumidity","SensorEEG","SensorOxygen","SensorPulse","SensorConductivity","SensorSpirometer","SensorTemperature","SensorGM","SensorRain","SensorWindSpeed","SensorWindDirection","SensorPulley","SensorColor","SensorMagneticLow","SensorHumidity2P","SensorMagneticHigh","SensorDO2","SensorO2","SensorRotary","SensorMagnetic","SensorSound","SensorCO2","SensorCharge","SensorTurbidity","SensorISE","SensorSoil","SensorUser","SensorPhotogate","SensorHeat","SensorFlow","TRGR","TRGR1","EXPRT","SCOPE","SCOPE1","START","STOP","MRK","MRK1","SWAP","ADD","SETUP","CHAN","PAN","PAN1","EventWithEvent","EventAutoNumber","SensorNotConnected","StreamerNotConnected","InferenceImportAppLabel","MenuSTATS1","MenuSTATS","MenuSTATSX","MenuSTATSX1","MenuSTATSY","MenuSTATSY1","WaitingStart","WinLabel","OrSensorNotConn","SensorNotConn","ExportLeft","ExportLeft1","ExportRight","ExportRight1","ExportCount","ExportToStatistics","ExportChooseAppHelp","NotConnected","UniqueColumnError","DataColumnNotEqual","AppName"},
{"AppFunc","FCN","PlotSetup_XTick","PlotSetup_XTickPos","PlotSetup_YTick","PlotSetup_YTickPos","FunctionIndepVarX","FunctionSymbHelp","PlotSetup_XRangeMinCue","PlotSetup_XRangeMaxCue","PlotSetup_YRangeMinCue","PlotSetup_YRangeMaxCue","PlotSetup_XTickCue","PlotSetup_YTickCue","VarsPlot","VarsSymbolic","VarsNumeric","VarsResults","FcnTitle","FcnRoot","FcnIntersection","FcnSlope","FcnSignedArea","FunctionSlopeLabel","FcnExtremum","VarsModes","FunctionIntersectionTitle","FunctionSymbHeader","FcnSketch","PlotSketchCue","PlotSketchNoUnused","PlotSketchNoCandidates","PlotSketchMultipleCandidates","PlotSketchPickCandidate","ImageSelect","ImageFullScreen","ImageSize","ImageToImport","ImageImportName","ImageImportFileName","ImageImportWidth","ImageImportwidthHelp","ImageImportHeight","ImageImportHeightHelp","ImageImportAspectRatio","ImageImportAspectRatioHelp","ImageImportTitle","ImageCalculate","FcnTangent","BackgroundImage","AppName"},
{"AppLinE","AppName","RightAnswer","Level2","RESETPARAMETERS","AppNameExp"},
{"AppGeom","Symbolic","ClearAllVariables","Syntax","DebugVars","Commands","CommandsTitle","VarsAll","VarsPoints","VarsLines","VarsPolys","VarsCurves","SpreadsheetColor","SpreadsheetFill","ObjectSelectionChooseTitle","ActionSequenceTypeSelectPoint","ActionSequenceTypeSelectLine","ActionSequenceTypeSelectPointLine","ActionSequenceTypeSelectCircle","ActionSequenceTypeSelectCurve","ActionSequenceTypeSelectCurveLine","ActionSequenceTypeSelectObject","ActionSequenceSelectLocation","ActionSequenceSelectAnothPoint","ActionSequenceSelectPointOrSegment","ActionSequencePolygon","ActionSequenceEnterAngle","ActionSequenceEnterScale","ActionSequenceNbSides","ActionSequenceSelectFocus","ActionSequenceEnterExpression","ActionSequenceExpressionInX","ActionSequenceParam","ActionSequenceSelectPointOnObject","ActionSequenceSelectPointOrTriange","ActionSequenceRandom","Plot","PixelSize","PixelSizeHelp","PlotSetupLongTextScrollHelp","PlotSetupLongTextScroll","CHECKALL","UNCHECKALL","MesureName","MesureDefault","MesureCastesian","MesureMesure","MesureTests","SliderMoveCursor","AnimFixed","AnimBackAndForth","AnimLoop","AnimTypeHelp","AnimType","AnimStepsPersHelp","AnimStepsPers","AnimPauseHelp","AnimPause","AnimMinHelp","AnimMin","AnimMaxHelp","AnimMax","AnimPosHelp","AnimPos","AnimStepHelp","AnimStep","AnimEdit","TracedTick","Traced","TraceClear","FillColorTick","FillColor","AnimateTick","Animate","ViewLabel","OptionMenu","OptionsPointStyle","Hide","HideLegend","ShowLegend","ODEFunctionHelp","ODEVar1Help","ODEVar2Help","ODESteps","ODEXStepsHelp","ODEeqLabel","ODEYStepsHelp","","","ODEVars","Geometry"},
{"AppSeq","NumSetupNumStartPos","NumSetupNumStepPos","NumSetupZoomGT1","Stairstep","Cobweb","PlotSetup_NRange","SEQPLOT","PlotSetup_NRangeMinCue","PlotSetup_NRangeMinNPI","PlotSetup_NRangeMaxCue","PlotSetup_NRangeMaxNPI","PlotSetup_PlotTypeCue","SeqAppIndepVarN","Symb1Header","Symb2Header","Symb3Header","Plot_NRangeNotInterval","OOD","SeqeunceEnterStartN","EnterValue","AppName","ForwardDefine","OptionUN","OptionUNP1","HelpOptions","HelpStart"},
{"AppLinS","AppName","Title","X","Y","Z","Yequal","2x2Enable","3x3Disable","2x2Disable","3x3Enable"},
{"AppTriS","AppName","SideA","SideB","SideC","T","U","V","RECT","TriangleNotEnoughDATA","TriangleADDSide","NoSolution","SolutionFound","InvalidAngle","InvalidAngleDeg","HelpLabel","HelpLabel2","RECT2","ALT","ALPHA","BETA","GAMMA","SIDEA","SIDEB","SIDEC","InfiniteSolutions"},
{"AppStat2","AppName","EnterIndependent","EnterDependent","EnterFrequency","LinearFit","LogarithmicFit","ExponentialFit","PowerFit","QudraticFit","CubicFit","QuarticFit","NthPolynomialFit","LogisticFit","ExponentFit","InverseFit","TrigonometricFit","UserDefinedFit","MedMedFit","StatPlotSetupMarkChooseHelp","StatPlotConnectHelp","StatPlotConnectLabel","FIT","FIT1","ChooseType","FitType","FitLabel","Stat2VarSymbHeader1","MarkColor"},
{"AppAdvG","InvalidSyntax","SymbHeader","SymbHelp","TracingTitle","TracingOff","TracingInside","TracingBoundary","SymbNotOpenSen","SymbUnsupportedOpIs","SymbUnsupportedOp","SymbUnsupportedElIs","SymbUnsupportedEl","SymbComplexesUnsupported","SymbListsUnsupported","SymbMatricesUnsupported","PlotNoneChecked","TracingPointsOfInterest","TracingXIntercepts","TracingYIntercepts","TracingInflections","TracingHExtrema","TracingVExtrema","TracingIntersections","TracingIntersectionsWith","NumIndepVarX","NumIndepVarY","NumBYOSat","NumBYOUnsat","NumSetupXStart","NumSetupYStart","NumSetupXStep","NumSetupYStep","NumSetupXZoom","NumSetupYZoom","NumSetupXStartHelp","NumSetupYStartHelp","NumSetupXStepHelp","NumSetupYStepHelp","NumSetupXZoomHelp","NumSetupYZoomHelp","NumSetupXStepPos","NumSetupYStepPos","NumSetupXZoomGT1","NumSetupYZoomGT1","NumBYOTrue","NumBYOFalse","TracingIntersectionsOfItem","TracingIntersectionsOf","TracingPointsOfInterestTitle","NumIntersectionDialogTitle","NumIntersectionDialogLine1","NumIntersectionDialogLine2","NumIntersectionDialogHelp1","NumIntersectionDialogHelp2","NumIntersectionDialogError","NumXEdgeDefn","NumYEdgeDefn","NumXInterDefn","NumYInterDefn","NumHExtDefn","NumVExtDefn","NumInflDefn","NumIntersectionDefn","NumManyDefn","TracingSelection","PlotGallery","NumHExtXYDefn","NumVExtXYDefn","NumInflXYDefn","NumIntersectionXYDefn","AppName"},
{"AppTrigE","Cos","Sin","Degree","Radian","Drift","Extr","PIBy9","PIBy6","PIBy4","Degree20","Degree30","Degree45","WrongAnswer","Level5","Level3","Level4","AppName"},
{"Notes","NotepadTitle","NEW","FORMAT","CenterAlign","LeftAlign","RightAlign","Align","Font","Style","NotepadEnterName","NoteWithSameNameExists","NewNote","ModeBGColorLabel","ModeFGColorLabel","AreYouSureClearAllText","AreYouSureYouWantToDeleteThisNote","EnterNewNoteName","TITLESaveNoteAs","ExceededTheMaxCharsLimit","RENAME","TITLERenameNoteAs","Enternewname"},
{"Error","ERNone","ERInexact","ERUnderflow","EROverflow","ERDivZ","ERZDivZ","ERInfMulZero","ERInfDivInf","ERSqrNeg","ERLnZero","ERLnNeg","ERNegFact","ERATrigSup1","ER1PowInf","ERNegPowInf","ERInfPow0","ERInfPowFrac","ERxPowFractNeg","ERooBounds","ERExponent","ERTwoComma","ERNoDigits","ERSyntax","ERInvalidPPYR","ERInvalidInput","ERInvalidI","ERNoSol","ERMainyNoSol","ERMainySol","ERInvalidN","ERUserBreak","ERInfiniteResult","ERInsufisantData","ERNoPayback","ERIRR0","ERUniquePosIRRNotFound","ERStack","ERParenthesis","ERInsufisantMemory","ERZeroFinderNoSolutionFound","ERZeroFinderBadGuesses","ERZeroFinderExtemumFound","ERZeroFinderConstantFunction","ERZeroFinderPoleFound","ERZeroFinderSolInBetween","ERBadArguementCount","ERVariables","ERBadArguementType","ERUndefinedNativeCall","ERCircularReference","ERUserError","ERUnmatchControlWord","ERInvalidPC","ERIllegalIndirection","ERNoInput","ERInvalidObject","ERUndefinedResult","ERInvalidDimention","ERCanNotDisplay","ERProbabilityRange","ERProbabilityMustBe1","ERWeightIsLT0","ERNotEnoughDefinitions","ERStatDataNotEqual","ERInvalidEq","ERInconsistentUnits","ERBreakContinueKill","ERDisabledFunction","ERRecursionLimit","","ERNoPlotViewForThisSetting"},
{"Parser","ZoomBox","ZoomIn","ZoomOut","ZoomAutoscale","ZoomDecimal","ZoomInteger","ZoomUnzoom","INPUThelp","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","DoYouWantToCreateVar","SSRegrSlope","GeomLineSegment","GeomLineRay","GeomLineLine","GeomLineOtherAngleBisect","GeomLineOtherPerpBisect","GeomLineOtherParallel","GeomLineOtherPerpendicular","GeomLineOtherTangent","GeomLineOtherMedian","GeomLineOtherAltitude","GeomPolygonTriangle","GeomPolygonIsoscTri","GeomPolygonRightTri","GeomPolygonQuadrilateral","GeomPolygonSpecialSquare","GeomPolygonSpecialParallelogram","GeomCurveCircle","GeomCurveEllipse","GeomCurveHyperbola","GeomCurveParabola","GeomCurveConic","GeomCurveSpecialCircumcircle","GeomCurveSpecialIncircle","GeomCurveSpecialExcircle","GeomCurveSpecialLocus","GeomTransformTranslation","GeomTransformReflection","GeomTransformDilation","GeomTransformSimilarity","GeomTransformRotation","GeomTransformOtherProjection","GeomTransformOtherInversion","GeomTransformOtherReciprocation","GeomPointPoint","GeomPointPointOn","GeomPointMidpoint","GeomPointIntersection","GeomPointRandom","GeomPointOtherCenter","GeomPointOtherIntersections","TBPercentage","TBFnRoot","TBModulus","TBArg","TBConj","TBIm","TBRe","TBSign","TBBinomial","TBChi2","TBFisher","TBNormal","TBPoisson","TBStudent","TBConcat","TBSigList","TBProdList","TBDeltaList","TBMakeList","TBPos","TBReverse","TBSize","TBSort","TBCross","TBDet","TBDot","TBTrn","TBColNorm","TBNorm","TBL1Norm","TBL2Norm","TBMaxNorm","TBCond","TBPivot","TBRank","TBRowNorm","TBSpecNorm","TBSpecRad","TBIdenMat","TBTrace","TBJordan","TBMakemat","TBmkisom","TBVandermonde","TBCholesky","TBDiag","TBEigenval","TBEigenvect","TBHessenberg","TBHilbert","TBIsmith","TBfft","TBifft","TBCeiling","TBFloor","TBFrac","TBInt","TBMant","TBRound","TBTruncate","TBXpon","TBFactorial","TBCombination","TBPerm","TBRandNorm","TBRandomNum","TBRandomInt","TBRandomSeed","TBRandom","TBCollect","TBExpand","TBFactor","TBPartfrac","TBSubst","TBtExpand","TBDiff","TBIntegrate","TBLimit","TBSeries","TBSum","TBCurl","TBDiverg","TBGrad","TBHessian","TBInvLap","TBLaplace","TBdivpc","TBsumriemann","TBtaylor","TBidivis","TBifactor","TBifactors","TBigcd","TBlcm","TBpowmod","TBEuler","TBisprime","TBithPrime","TBnextprime","TBprevprime","TBdenom","TBichinrem","TBiquo","TBirem","TBnumer","TBplotcontour","TBplotfield","TBplotfunc","TBplotimplicit","TBplotparam","TBplotpolar","TBplotseq","TBplotlist","TBplotode","TBcSolve","TBcZeros","TBdeSolve","TBlinsolve","TBnsolve","TBodesolve","TBsolve","TBzeros","TBcoeff","TBproot","TBfcoeff","TBsturmab","TBpcoeff","TBpoly2Symb","TBsymb2Poly","TBcontent","TBdegree","TBfactor_xn","TBcyclotomic","TBgbasis","TBgreduce","TBhermite","TBlagrange","TBlaguerre","TBLegendre","TBtcheby1","TBtcheby2","TBacost2asin","TBleftside","TBrightside","TBacos2atan","TBcos2sintan","TBexp2pow","TBexp2trig","TBexpexpand","TBpow2expand","TBasin2acos","TBasin2atan","TBsin2costan","TBatan2acos","TBatan2asin","TBhalftan","TBtan2sincos","TBatrig2ln","TBtCollect","TBtlin","TBtrig2exp","TBtrigcos","TBtrigexpand","TBtrigsin","TBtrigtan","TBIbpdv","TBibpu","TBpreval","TBisopolygon","TBrhombus","TBiscollinear","TBisconcyclic","TBisconjugate","TBiselement","TBisequilateral","TBisisosceles","TBisparallel","TBisperpendicular","TBisparallelogram","TBisrectangle","TBmeasabscissa","TBmeasaffix","TBmeasangle","TBmeasarclen","TBmeascoord","TBmeasdistance","TBmeasequation","TBpolarcoords","TBmeasperimeter","TBmeasradius","TBmeasordinate","TBmeasparameq","TBIntersect","TBDifference","TBGeometric","TBUnion","TBCFactor","TBSlider"},
{"AppStat1","1VarHistogram","1VarBoxWhisker","1VarLine","1VarNPP","1VarPie","1VarPareto","1VarBar","PlotSetup_Hwidth","PlotSetup_HwidthCue","PlotSetup_HRange","PlotSetup_MinHRangeCue","PlotSetup_MaxHRangeCue","PlotHelp","PlotType","PlotSetup_HWidthPos","1VarSymb1Header","1VarDot","1VarStemLeaf","1VarControl","PlotOptionHelp","1VarNoOutliers","1VarShowOutliers","1VarOption","1VarControlIndiv","1VarControlMR","AppName","CalcMeanXHelp","CalcSumXHelp","CalcSumX2Help","CalcMeanYHelp","CalcSumYHelp","CalcSumY2Help","CalcSumXYHelp","CalcSampCovLabel","CalcSampCovHelp","CalcPopCovLabel","CalcPopCovHelp","CalcNbItemHelp","CalcStdDevXHelp","CalcStdDevYHelp","CalcPopDevXHelp","CalcPopDevYHelp","CalcStdErrXHelp","CalcStdErrYHelp","CalcMinXHelp","CalcQ1XHelp","CalcMedXHelp","CalcQ3XHelp","CalcMaxXHelp","CalcMinYHelp","CalcSSXHelp","CalcSSYHelp","StemLeafSingle","StemLeafSplit"},
{"AppPolar","PlotSetup_ThetaRange","PlotSetup_ThetaStep","PlotSetup_ThetaStepPos","PlotSetup_ThetaRangeMinCue","PlotSetup_ThetaRangeMaxCue","PlotSetup_ThetaStepCue","IndepVar","Plot_ThetaRangeNotInterval","SymbHeader","AppName"},
{"AppParam","PlotSetup_TRange","PlotSetup_TStep","PlotSetup_TStepPos","PlotSetup_TRangeMinCue","PlotSetup_TRangeMaxCue","PlotSetup_TStepCue","IndepVar","Plot_TRangeNotInterval","Symb1Header","Symb2Header","AppName"},
{"App3D","PlotSetupSurface_GriddedTwoSided","PlotSetup_ZRangeMinCue","PlotSetup_ZRangeMaxCue","SymbHeader","AppName","SymbCue","PlotSetup_ZRange","PlotSetup_XRangeMinCue","PlotSetup_XRangeMaxCue","PlotSetup_YRangeMinCue","PlotSetup_YRangeMaxCue","PlotSetup_Grid","PlotSetup_Gridx","PlotSetup_GridXCue","PlotSetup_GridYCue","PlotSetup_BoxSides","PlotSetup_BoxSidesCue","PlotSetup_GridErr","Plot_ZRangeNotInterval","Plot_ZRangeTooNarrow","ZoomZIn","ZoomZOut","ZoomSquareXY","ZoomFactorsZGT1","ZoomFactorsXCue","ZoomFactorsYCue","ZoomFactorsZCue","ZoomFactorsZ","PlotSetup_PoseXAxis","PlotSetup_PoseYAxis","PlotSetup_PoseZAxis","PlotSetup_PoseTurn","PlotSetup_PoseXAxisCue","PlotSetup_PoseYAxisCue","PlotSetup_PoseZAxisCue","PlotSetup_PoseTurnCue","Plot_PoseAxisErr","PlotSetup_BoxScale","PlotSetup_BoxScaleCue","PlotSetup_BoxScaleErr","PlotSetup_BoxFrame","PlotSetup_BoxFrameCue","PlotSetup_Surface","PlotSetupSurface_TwoSided","PlotSetupSurface_Checkerboard","PlotSetupSurface_Elevation","GotoZCue","PlotSetup_BoxXSideColorCue","PlotSetup_BoxYSideColorCue","PlotSetup_BoxZSideColorCue","PlotSetup_SteppingErr","PlotSetup_CheckerXCue","PlotSetup_CheckerYCue","PlotSetup_ZTick","PlotSetup_XTickCue","PlotSetup_YTickCue","PlotSetup_ZTickCue","PlotSetup_ZTickPos","PlotSetup_Marks_None","PlotSetup_Marks_Rear","PlotSetup_Marks_FrontAndRear","SurfaceColoring","PlotSetup_BoxAxesColorCue","PlotSetup_BoxLinesColorCue","PlotSetup_BoxDotsColorCue","PlotSetup_BoxFrameColorCue","PlotSetup_BoxAxesCue","PlotSetup_BoxLinesCue","PlotSetup_BoxDotsCue","PlotSetup_SurfaceCue","PlotSetup_Marks_Zmin","PlotSetup_KeyAxes","PlotSetup_KeyAxesCue","PlotSetup_KeyXAxisColorCue","PlotSetup_KeyYAxisColorCue","PlotSetup_KeyZAxisColorCue","PlotSetupSurface_Slope","PlotSetup_GriddingXCue","PlotSetup_GriddingYCue","PlotSetup_BoxLines","PlotSetup_BoxDots","PlotSetup_BoxAxes","PlotSetup_Checker","PlotSetup_LabelsCue","Spin","AutoscalingSingleZ"},
{"Units","Unit_m","Unit_cm","Unit_mm","Unit_Km","Unit_au","Unit_lyr","Unit_pc","Unit_Angstrom","Unit_chain","Unit_fath","Unit_fermi","Unit_yd","Unit_ft","Unit_ftUS","Unit_inch","Unit_mile","Unit_nmi","Unit_miUS","Unit_mil","Unit_rod","Unit_m2","Unit_Km2","Unit_cm2","Unit_ha","Unit_a","Unit_acre","Unit_b","Unit_yd2","Unit_ft2","Unit_inch2","Unit_mile2","Unit_miUS2","Unit_m3","Unit_cm3","Unit_l","Unit_ml","Unit_st","Unit_yd3","Unit_ft3","Unit_inch3","Unit_bbl","Unit_bu","Unit_buUS","Unit_cu","Unit_fbm","Unit_ozfl","Unit_ozUK","Unit_tbsp","Unit_tsp","Unit_qt","Unit_liqpt","Unit_ptUK","Unit_pk","Unit_galUS","Unit_galUK","Unit_s","Unit_mn","Unit_h","Unit_d","Unit_yr","Unit_Hz","Unit_mps","Unit_cmps","Unit_ftps","Unit_kph","Unit_mph","Unit_knot","Unit_radps","Unit_trpmn","Unit_trps","Unit_Kg","Unit_g","Unit_grain","Unit_lb","Unit_lbt","Unit_oz","Unit_ozt","Unit_slug","Unit_tonUK","Unit_tonUS","Unit_u","Unit_t","Unit_ct","Unit_mps2","Unit_Gal","Unit_radps2","Unit_Kgmps2","Unit_N","Unit_dyn","Unit_kip","Unit_gf","Unit_lbf","Unit_pdl","Unit_Kgm2ps2","Unit_J","Unit_Wh","Unit_KWh","Unit_Kcal","Unit_cal","Unit_eV","Unit_MeV","Unit_Btu","Unit_erg","Unit_therm","Unit_toe","Unit_tec","Unit_lep","Unit_bblep","Unit_boe","Unit_cf","Unit_Kgm2ps3","Unit_W","Unit_MW","Unit_hp","Unit_Kgpmps2","Unit_Pa","Unit_bar","Unit_atm","Unit_psi","Unit_torr","Unit_mmHg","Unit_inHg","Unit_inH2O","Unit_K","Unit_Rankine","Unit_0C","Unit_0F","Unit_A","Unit_V","Unit_C","Unit_Ohm","Unit_F","Unit_Fdy","Unit_Wb","Unit_H","Unit_mho","Unit_S","Unit_T","Unit_Ah","Unit_cd","Unit_flam","Unit_rad","Unit_deg","Unit_grad","Unit_gon","Unit_arcmin","Unit_arcs","Unit_tr","Unit_m2ps","Unit_P","Unit_St","Unit_Bq","Unit_Ci","Unit_Gy","Unit_rd","Unit_rem","Unit_Sv","Unit_R","Unit_mol","Unit_ftlbfps","Unit_ftlbf","Unit_mileph","Unit_ftps2","Unit_grav","Unitm_Y","Unitm_Z","Unitm_E","Unitm_P","Unitm_T","Unitm_G","Unitm_M","Unitm_K","Unitm_H","Unitm_D","Unitm_d","Unitm_c","Unitm_m","Unitm_u","Unitm_n","Unitm_p","Unitm_f","Unitm_a","Unitm_z","Unitm_y","Constant_NA","Constant_k","Constant_Vm","Constant_R","Constant_StdT","Constant_StdP","Constant_Sigma","Constant_c","Constant_e0","Constant_m0","Constant_g","Constant_G","Constant_h","Constant_hBar","Constant_q","Constant_me","Constant_qme","Constant_mp","Constant_mpme","Constant_alpha","Constant_phi","Constant_F","Constant_Rinf","Constant_a0","Constant_mB","Constant_mN","Constant_l0","Constant_f0","Constant_lc","UnitsPrefix","UnitsLength","UnitsArea","UnitsVolume","UnitsTime","UnitsSpeed","UnitsMass","UnitsAcceleration","UnitsForce","UnitsEnergy","UnitsPower","UnitsPressure","UnitsTemperature","UnitsElectricity","UnitsLight","UnitsAngle","UnitsViscosity","UnitsRadiation","Math","Constants","Chemist","Quantum","Unit1","Unit11","Unit2","Unit21","TOOLS"},
{"ExamMode","Test"},
{"ShareSymb","Empty"},
{"DefBase","Test"},
{"ShareNum","Test"},
{"CasSet","Test"},
{"ZoomImage","Test"},
{"EmptyEnd","Test"}};

 lg:={"English","中文 (简体)","Français","Deutsch","Español","Nederlands","Português","日本語"};  // Language list
 Nmb:="STRINGFROMID_"+lg(Language)+".txt";                                                       // File name
 DelAFiles(Nmb);
 AFilesB(Nmb,0):={255,254};
 k:=MAX(MAKELIST(DIM(li(I,1))+MAX(DIM(tail(li(I)))),I,1,SIZE(li)))+1;   // Maximum length of any "group_ID" string

 FOR j FROM 1 TO SIZE(li) DO                             // For each group
   group:=li(j,1);                                       //   get group name
   id_list:=sort(UNION(tail(li(j))));                    //   get sorted list of IDs for this group, without duplicates
   if id_list(1)=="" THEN id_list:=tail(id_list); END;   //   remove empty string ID if any
   FOR id FROM 1 to SIZE(id_list) DO                     //   for each ID within a group
     str:= group+"_"+id_list(id);                        //     build "group_id" string
     Tx:=REPLACE(str,k+3,"")+STRINGFROMID(str)+"\r\n";   //     pad "group_id" string with spaces up to k+2 characters and add the localized string 
     LOCAL y,Nvo={};
     FOR y:=1 TO DIM(Tx) DO
       Nvo(0):=Tx(y);
       Nvo(0):=BITSR(Tx(y),8)
     END;
     AFilesB(Nmb,AFilesB(Nmb)):=Nvo;                     //     Store Unicode text
   END;
 END;

 lg(Language)+": Done!"
END;

And the txt files extracted from the current beta version:
1 English
2 中文 (简体)
3 Français
4 Deutsch
5 Español
6 Nerderlands
7 Português
8 日本語
Find all posts by this user
Quote this message in a reply
09-20-2018, 06:15 AM
Post: #17
RE: STRINGFROMID and gradians
Nice work!

Cyrille

Although I work for the HP calculator group, the views and opinions I post here are my own. I do not speak for HP.
Find all posts by this user
Quote this message in a reply
09-20-2018, 06:38 AM (This post was last modified: 09-20-2018 08:28 AM by StephenG1CMZ.)
Post: #18
RE: STRINGFROMID and gradians
Its interesting that the English text has a few entries relating to Program_GOTOLinenumber, a feature a few people would like to see (although perhaps that is just for debugging, rather than a PPL Statement).
And the English has a couple of Chinee/Japanase entries - perhaps the language selection screen?

Stephen Lewkowicz (G1CMZ)
https://my.numworks.com/python/steveg1cmz
Visit this user's website Find all posts by this user
Quote this message in a reply
09-20-2018, 05:52 PM
Post: #19
RE: STRINGFROMID and gradians
(09-20-2018 06:38 AM)StephenG1CMZ Wrote:  Its interesting that the English text has a few entries relating to Program_GOTOLinenumber, a feature a few people would like to see (although perhaps that is just for debugging, rather than a PPL Statement).
And the English has a couple of Chinee/Japanase entries - perhaps the language selection screen?

I wouldn't mind an HPPL GOTO statement! Even C has GOTO and it would make translating programs to HPPL easier in some cases.

Tom "The Programming Heretic" Lake

Tom L
Cui bono?
Find all posts by this user
Quote this message in a reply
09-20-2018, 05:58 PM
Post: #20
RE: STRINGFROMID and gradians
(09-20-2018 05:52 PM)toml_12953 Wrote:  
(09-20-2018 06:38 AM)StephenG1CMZ Wrote:  Its interesting that the English text has a few entries relating to Program_GOTOLinenumber, a feature a few people would like to see (although perhaps that is just for debugging, rather than a PPL Statement).
And the English has a couple of Chinee/Japanase entries - perhaps the language selection screen?

I wouldn't mind an HPPL GOTO statement! Even C has GOTO and it would make translating programs to HPPL easier in some cases.

Tom "The Programming Heretic" Lake

Let our program be:
Drum the tom-tom and throw the heretic into the lake!
as
there are more important things to fix and add than GOTOLinenumber
VPN
Find all posts by this user
Quote this message in a reply
Post Reply 




User(s) browsing this thread: 1 Guest(s)